settings.py 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141
  1. """
  2. Django settings for my_project project.
  3. Generated by 'django-admin startproject' using Django 3.0.8.
  4. For more information on this file, see
  5. https://docs.djangoproject.com/en/3.0/topics/settings/
  6. For the full list of settings and their values, see
  7. https://docs.djangoproject.com/en/3.0/ref/settings/
  8. """
  9. import os
  10. # Build paths inside the project like this: os.path.join(BASE_DIR, ...)
  11. BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
  12. # Quick-start development settings - unsuitable for production
  13. # See https://docs.djangoproject.com/en/3.0/howto/deployment/checklist/
  14. # SECURITY WARNING: keep the secret key used in production secret!
  15. SECRET_KEY = 'g9x!2%visyznwu#6a35)sygefkeu_z=oc5t8!hh%=jt)mw$cn('
  16. # SECURITY WARNING: don't run with debug turned on in production!
  17. DEBUG = True
  18. ALLOWED_HOSTS = ['*']
  19. # Application definition
  20. INSTALLED_APPS = [
  21. 'django.contrib.admin',
  22. 'django.contrib.auth',
  23. 'django.contrib.contenttypes',
  24. 'django.contrib.sessions',
  25. 'django.contrib.messages',
  26. 'django.contrib.staticfiles',
  27. 'rest_framework',
  28. 'django_filters',
  29. 'workreport',
  30. 'mptt',
  31. 'workTtree'
  32. ]
  33. MIDDLEWARE = [
  34. 'django.middleware.security.SecurityMiddleware',
  35. 'django.contrib.sessions.middleware.SessionMiddleware',
  36. 'django.middleware.common.CommonMiddleware',
  37. 'django.middleware.csrf.CsrfViewMiddleware',
  38. 'django.contrib.auth.middleware.AuthenticationMiddleware',
  39. 'django.contrib.messages.middleware.MessageMiddleware',
  40. 'django.middleware.clickjacking.XFrameOptionsMiddleware',
  41. ]
  42. ROOT_URLCONF = 'my_project.urls'
  43. TEMPLATES = [
  44. {
  45. 'BACKEND': 'django.template.backends.django.DjangoTemplates',
  46. 'DIRS': [os.path.join(BASE_DIR, 'templates')]
  47. ,
  48. 'APP_DIRS': True,
  49. 'OPTIONS': {
  50. 'context_processors': [
  51. 'django.template.context_processors.debug',
  52. 'django.template.context_processors.request',
  53. 'django.contrib.auth.context_processors.auth',
  54. 'django.contrib.messages.context_processors.messages',
  55. ],
  56. },
  57. },
  58. ]
  59. WSGI_APPLICATION = 'my_project.wsgi.application'
  60. # Database
  61. # https://docs.djangoproject.com/en/3.0/ref/settings/#databases
  62. DATABASES = {
  63. 'default': {
  64. 'ENGINE': 'django.db.backends.mysql',
  65. 'NAME': "linjj_django_demo",
  66. "USER": "root",
  67. "PASSWORD": "abc.123",
  68. "HOST": "srv.test.linkerplus.com",
  69. "PORT": "3310"
  70. }
  71. }
  72. # Password validation
  73. # https://docs.djangoproject.com/en/3.0/ref/settings/#auth-password-validators
  74. AUTH_PASSWORD_VALIDATORS = [
  75. {
  76. 'NAME': 'django.contrib.auth.password_validation.UserAttributeSimilarityValidator',
  77. },
  78. {
  79. 'NAME': 'django.contrib.auth.password_validation.MinimumLengthValidator',
  80. },
  81. {
  82. 'NAME': 'django.contrib.auth.password_validation.CommonPasswordValidator',
  83. },
  84. {
  85. 'NAME': 'django.contrib.auth.password_validation.NumericPasswordValidator',
  86. },
  87. ]
  88. # Internationalization
  89. # https://docs.djangoproject.com/en/3.0/topics/i18n/
  90. LANGUAGE_CODE = 'en-us'
  91. TIME_ZONE = 'UTC'
  92. USE_I18N = True
  93. USE_L10N = True
  94. USE_TZ = True
  95. # Static files (CSS, JavaScript, Images)
  96. # https://docs.djangoproject.com/en/3.0/howto/static-files/
  97. STATIC_URL = '/static/'
  98. REST_FRAMEWORK = {
  99. # 设置分页默认类 ?limit=?&offset=? 更习惯使用 PageNumberPagination
  100. 'DEFAULT_PAGINATION_CLASS': 'rest_framework.pagination.LimitOffsetPagination',
  101. 'PAGE_SIZE': 3,
  102. # 设置过滤默认类 SearchFilter搜索类、OrderingFilter排序类
  103. 'DEFAULT_FILTER_BACKENDS': ['django_filters.rest_framework.DjangoFilterBackend'],
  104. 'DEFAULT_PERMISSION_CLASSES': ['rest_framework.permissions.IsAuthenticated'],
  105. 'DEFAULT_AUTHENTICATION_CLASSES': (
  106. 'rest_framework.authentication.BasicAuthentication',
  107. 'rest_framework.authentication.SessionAuthentication',
  108. )
  109. }
  110. AUTHENTICATION_BACKENDS = (
  111. 'django.contrib.auth.backends.ModelBackend'
  112. )