settings.py 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143
  1. """
  2. Django settings for PLM project.
  3. Generated by 'django-admin startproject' using Django 4.0.5.
  4. For more information on this file, see
  5. https://docs.djangoproject.com/en/4.0/topics/settings/
  6. For the full list of settings and their values, see
  7. https://docs.djangoproject.com/en/4.0/ref/settings/
  8. """
  9. from pathlib import Path
  10. # Build paths inside the project like this: BASE_DIR / 'subdir'.
  11. BASE_DIR = Path(__file__).resolve().parent.parent
  12. # Quick-start development settings - unsuitable for production
  13. # See https://docs.djangoproject.com/en/4.0/howto/deployment/checklist/
  14. # SECURITY WARNING: keep the secret key used in production secret!
  15. SECRET_KEY = 'django-insecure-l_d6#5e*m2h#8^8qt@=4gpzftiqg0v*ei)rcg(tlz#&l!2+4p1'
  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. # 'corsheaders',
  28. 'BOM',
  29. 'Info',
  30. 'IT_service'
  31. ]
  32. MIDDLEWARE = [
  33. 'django.middleware.security.SecurityMiddleware',
  34. 'django.contrib.sessions.middleware.SessionMiddleware',
  35. # 'corsheaders.middleware.CorsMiddleware', # Django Vue 前后端分离,必须在CommonMiddleware之前
  36. 'middleware.my_middleware.LoginCheckMiddleware',
  37. 'django.middleware.common.CommonMiddleware',
  38. 'django.middleware.csrf.CsrfViewMiddleware',
  39. 'django.contrib.auth.middleware.AuthenticationMiddleware',
  40. 'django.contrib.messages.middleware.MessageMiddleware',
  41. 'django.middleware.clickjacking.XFrameOptionsMiddleware',
  42. ]
  43. ROOT_URLCONF = 'PLM.urls'
  44. TEMPLATES = [
  45. {
  46. 'BACKEND': 'django.template.backends.django.DjangoTemplates',
  47. 'DIRS': [],
  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 = 'PLM.wsgi.application'
  60. # Database
  61. # https://docs.djangoproject.com/en/4.0/ref/settings/#databases
  62. DATABASES = {
  63. 'default': {
  64. 'ENGINE': 'django.db.backends.sqlite3',
  65. 'NAME': BASE_DIR / 'db.sqlite3',
  66. }
  67. # 'default': {
  68. # 'ENGINE': 'django.db.backends.mysql',
  69. # 'NAME': 'PLM',
  70. # 'USER': 'root',
  71. # 'PASSWORD': '123456',
  72. # 'HOST': '192.168.3.254',
  73. # 'PORT': '3306',
  74. # }
  75. }
  76. # Password validation
  77. # https://docs.djangoproject.com/en/4.0/ref/settings/#auth-password-validators
  78. AUTH_PASSWORD_VALIDATORS = [
  79. {
  80. 'NAME': 'django.contrib.auth.password_validation.UserAttributeSimilarityValidator',
  81. },
  82. {
  83. 'NAME': 'django.contrib.auth.password_validation.MinimumLengthValidator',
  84. },
  85. {
  86. 'NAME': 'django.contrib.auth.password_validation.CommonPasswordValidator',
  87. },
  88. {
  89. 'NAME': 'django.contrib.auth.password_validation.NumericPasswordValidator',
  90. },
  91. ]
  92. # Internationalization
  93. # https://docs.djangoproject.com/en/4.0/topics/i18n/
  94. LANGUAGE_CODE = 'en-us'
  95. TIME_ZONE = 'UTC'
  96. USE_I18N = True
  97. USE_TZ = True
  98. # Static files (CSS, JavaScript, Images)
  99. # https://docs.djangoproject.com/en/4.0/howto/static-files/
  100. STATIC_URL = 'static/'
  101. # Default primary key field type
  102. # https://docs.djangoproject.com/en/4.0/ref/settings/#default-auto-field
  103. DEFAULT_AUTO_FIELD = 'django.db.models.BigAutoField'
  104. # CORS_ALLOW_ALL_ORIGINS = True
  105. # CSRF_TRUSTED_ORIGINS = [
  106. # 'http://localhost:8000',
  107. # ]