dev.py 6.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221
  1. """
  2. Django settings for meib project.
  3. Generated by 'django-admin startproject' using Django 1.11.11.
  4. For more information on this file, see
  5. https://docs.djangoproject.com/en/1.11/topics/settings/
  6. For the full list of settings and their values, see
  7. https://docs.djangoproject.com/en/1.11/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/1.11/howto/deployment/checklist/
  14. # SECURITY WARNING: keep the secret key used in production secret!
  15. SECRET_KEY = '=&u2a!cp6*4i=$140mw^m_+2%ko82r+o*camh&=12mg2s+m%y0'
  16. # SECURITY WARNING: don't run with debug turned on in production!
  17. DEBUG = True
  18. ALLOWED_HOSTS = ['*']
  19. # Application definition
  20. import sys
  21. #告诉系统apps作为了子应用的新的导包路径
  22. sys.path.insert(1,os.path.join(BASE_DIR,'apps'))
  23. # import sys
  24. #告诉系统apps作为了子应用的新的导包路径
  25. sys.path.insert(0,os.path.join(BASE_DIR,'apps'))
  26. sys.path.insert(1,BASE_DIR)
  27. print(sys.path)
  28. INSTALLED_APPS = [
  29. 'django.contrib.admin',
  30. 'django.contrib.auth',
  31. 'django.contrib.contenttypes',
  32. 'django.contrib.sessions',
  33. 'django.contrib.messages',
  34. 'django.contrib.staticfiles',
  35. 'erp.apps.ErpConfig', #ERP单据
  36. 'users.apps.UsersConfig', #登录
  37. 'tx.apps.TxConfig' #天玺应用
  38. ]
  39. MIDDLEWARE = [
  40. 'django.middleware.security.SecurityMiddleware',
  41. 'django.contrib.sessions.middleware.SessionMiddleware',
  42. 'django.middleware.common.CommonMiddleware',
  43. # 'django.middleware.csrf.CsrfViewMiddleware',
  44. 'django.contrib.auth.middleware.AuthenticationMiddleware',
  45. 'django.contrib.messages.middleware.MessageMiddleware',
  46. 'django.middleware.clickjacking.XFrameOptionsMiddleware',
  47. # 'utils.middleware.middleware',#用户验证中间件
  48. ]
  49. ROOT_URLCONF = 'meib.urls'
  50. TEMPLATES = [
  51. {
  52. 'BACKEND': 'django.template.backends.django.DjangoTemplates',
  53. 'DIRS': [os.path.join(BASE_DIR,'templates')],
  54. 'APP_DIRS': True,
  55. 'OPTIONS': {
  56. 'context_processors': [
  57. 'django.template.context_processors.debug',
  58. 'django.template.context_processors.request',
  59. 'django.contrib.auth.context_processors.auth',
  60. 'django.contrib.messages.context_processors.messages',
  61. ],
  62. },
  63. },
  64. ]
  65. WSGI_APPLICATION = 'meib.wsgi.application'
  66. # Database
  67. # https://docs.djangoproject.com/en/1.11/ref/settings/#databases
  68. # DATABASES = {
  69. # 'default': {
  70. # 'ENGINE': 'django.db.backends.sqlite3',
  71. # 'NAME': os.path.join(BASE_DIR, 'db.sqlite3'),
  72. # }
  73. # }
  74. # 配置连接数据库
  75. # DATABASES = {
  76. # # 'default': {
  77. # # 'ENGINE': 'django.db.backends.sqlite3',
  78. # # 'NAME': os.path.join(BASE_DIR, 'db.sqlite3'),
  79. # # }
  80. # 'default': {
  81. # 'NAME': 'DB_2019',
  82. # 'ENGINE': 'sql_server.pyodbc',
  83. # 'HOST': '127.0.0.1',
  84. # 'USER': 'sa',
  85. # 'PASSWORD': '123456',
  86. # 'PORT': '1433', # Set to empty string for default. Not used with sqlite3.
  87. # 'OPTIONS': {
  88. # 'host_is_server': True,
  89. # 'dsn': 'rencuiliang',##需要在电脑上使用odbc创建数据源odbc_jlad
  90. # },
  91. # }
  92. # }
  93. DATABASES = {
  94. 'default': {
  95. 'ENGINE': 'sql_server.pyodbc',
  96. 'NAME': 'DB_18MB',
  97. 'USER': 'sa',
  98. 'PASSWORD': '123456',
  99. 'HOST': '127.0.0.1',
  100. 'PORT': '1433',
  101. 'OPTIONS': {
  102. 'driver': 'SQL Server Native Client 10.0',
  103. },
  104. },
  105. }
  106. DATABASE_CONNECTION_POOLING = True
  107. # Password validation
  108. # https://docs.djangoproject.com/en/1.11/ref/settings/#auth-password-validators
  109. AUTH_PASSWORD_VALIDATORS = [
  110. {
  111. 'NAME': 'django.contrib.auth.password_validation.UserAttributeSimilarityValidator',
  112. },
  113. {
  114. 'NAME': 'django.contrib.auth.password_validation.MinimumLengthValidator',
  115. },
  116. {
  117. 'NAME': 'django.contrib.auth.password_validation.CommonPasswordValidator',
  118. },
  119. {
  120. 'NAME': 'django.contrib.auth.password_validation.NumericPasswordValidator',
  121. },
  122. ]
  123. # Internationalization
  124. # https://docs.djangoproject.com/en/1.11/topics/i18n/
  125. LANGUAGE_CODE = 'en-us'
  126. TIME_ZONE = 'UTC'
  127. USE_I18N = True
  128. USE_L10N = True
  129. USE_TZ = True
  130. # Static files (CSS, JavaScript, Images)
  131. # https://docs.djangoproject.com/en/1.11/howto/static-files/
  132. STATIC_URL = '/static/'
  133. STATICFILES_DIRS = [os.path.join(BASE_DIR,'static')]
  134. #配置访问日志
  135. LOGGING = {
  136. 'version': 1,
  137. 'disable_existing_loggers': False, # 是否禁用已经存在的日志器
  138. 'formatters': { # 日志信息显示的格式
  139. 'verbose': {
  140. 'format': '%(levelname)s %(asctime)s %(module)s %(lineno)d %(message)s'
  141. },
  142. 'simple': {
  143. 'format': '%(levelname)s %(module)s %(lineno)d %(message)s'
  144. },
  145. },
  146. 'filters': { # 对日志进行过滤
  147. 'require_debug_true': { # django在debug模式下才输出日志
  148. '()': 'django.utils.log.RequireDebugTrue',
  149. },
  150. },
  151. 'handlers': { # 日志处理方法
  152. 'console': { # 向终端中输出日志
  153. 'level': 'INFO',
  154. 'filters': ['require_debug_true'],
  155. 'class': 'logging.StreamHandler',
  156. 'formatter': 'simple'
  157. },
  158. 'file': { # 向文件中输出日志
  159. 'level': 'INFO',
  160. 'class': 'logging.handlers.RotatingFileHandler',
  161. 'filename': os.path.join(os.path.dirname(BASE_DIR), 'logs/hwj.log'), # 日志文件的位置
  162. 'maxBytes': 100 * 1024 * 1024,#输出日志大小,以字节为单位,也就是一个文件只能存放这个打数据的,超过会新增
  163. 'backupCount': 10,#最多超过生成10个文件
  164. 'formatter': 'verbose'
  165. },
  166. },
  167. 'loggers': { # 日志器
  168. 'django': { # 定义了一个名为django的日志器
  169. 'handlers': ['console', 'file'], # 可以同时向终端与文件中输出日志
  170. 'propagate': True, # 是否继续传递日志信息
  171. 'level': 'INFO', # 日志器接收的最低日志级别,INFO < debug < warn < error
  172. },
  173. }
  174. }
  175. # 指定静态文件的收集位置
  176. STATIC_ROOT = os.path.join(os.path.dirname(BASE_DIR), 'static')
  177. PAGE_SIZE = 20
  178. AUTH_USER_MODEL = 'users.User'