settings.py 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155
  1. # Django settings for proj project.
  2. DEBUG = True
  3. TEMPLATE_DEBUG = DEBUG
  4. ADMINS = (
  5. # ('Your Name', 'your_email@example.com'),
  6. )
  7. MANAGERS = ADMINS
  8. DATABASES = {
  9. 'default': {
  10. # Add 'postgresql_psycopg2', 'mysql', 'sqlite3' or 'oracle'.
  11. 'ENGINE': 'django.db.backends.',
  12. 'NAME': '', # path to database file if using sqlite3.
  13. 'USER': '', # Not used with sqlite3.
  14. 'PASSWORD': '', # Not used with sqlite3.
  15. 'HOST': '', # Set to empty string for localhost.
  16. # Not used with sqlite3.
  17. 'PORT': '', # Set to empty string for default.
  18. # Not used with sqlite3.
  19. }
  20. }
  21. # Local time zone for this installation. Choices can be found here:
  22. # http://en.wikipedia.org/wiki/List_of_tz_zones_by_name
  23. # although not all choices may be available on all operating systems.
  24. # In a Windows environment this must be set to your system time zone.
  25. TIME_ZONE = 'America/Chicago'
  26. # Language code for this installation. All choices can be found here:
  27. # http://www.i18nguy.com/unicode/language-identifiers.html
  28. LANGUAGE_CODE = 'en-us'
  29. SITE_ID = 1
  30. # If you set this to False, Django will make some optimizations so as not
  31. # to load the internationalization machinery.
  32. USE_I18N = True
  33. # If you set this to False, Django will not format dates, numbers and
  34. # calendars according to the current locale.
  35. USE_L10N = True
  36. # If you set this to False, Django will not use timezone-aware datetimes.
  37. USE_TZ = True
  38. # Absolute filesystem path to the directory that will hold user-uploaded files.
  39. # Example: "/home/media/media.lawrence.com/media/"
  40. MEDIA_ROOT = ''
  41. # URL that handles the media served from MEDIA_ROOT. Make sure to use a
  42. # trailing slash.
  43. # Examples: "http://media.lawrence.com/media/", "http://example.com/media/"
  44. MEDIA_URL = ''
  45. # Absolute path to the directory static files should be collected to.
  46. # Don't put anything in this directory yourself; store your static files
  47. # in apps' "static/" subdirectories and in STATICFILES_DIRS.
  48. # Example: "/home/media/media.lawrence.com/static/"
  49. STATIC_ROOT = ''
  50. # URL prefix for static files.
  51. # Example: "http://media.lawrence.com/static/"
  52. STATIC_URL = '/static/'
  53. # Additional locations of static files
  54. STATICFILES_DIRS = (
  55. # Put strings here, like "/home/html/static" or "C:/www/django/static".
  56. # Always use forward slashes, even on Windows.
  57. # Don't forget to use absolute paths, not relative paths.
  58. )
  59. # List of finder classes that know how to find static files in
  60. # various locations.
  61. STATICFILES_FINDERS = (
  62. 'django.contrib.staticfiles.finders.FileSystemFinder',
  63. 'django.contrib.staticfiles.finders.AppDirectoriesFinder',
  64. )
  65. # Make this unique, and don't share it with anybody.
  66. SECRET_KEY = 'x2$s&0z2xehpnt_99i8q3)4)t*5q@+n(+6jrqz4@rt%a8fdf+!'
  67. # List of callables that know how to import templates from various sources.
  68. TEMPLATE_LOADERS = (
  69. 'django.template.loaders.filesystem.Loader',
  70. 'django.template.loaders.app_directories.Loader',
  71. )
  72. MIDDLEWARE_CLASSES = (
  73. 'django.middleware.common.CommonMiddleware',
  74. 'django.contrib.sessions.middleware.SessionMiddleware',
  75. 'django.middleware.csrf.CsrfViewMiddleware',
  76. 'django.contrib.auth.middleware.AuthenticationMiddleware',
  77. 'django.contrib.messages.middleware.MessageMiddleware',
  78. # Uncomment the next line for simple clickjacking protection:
  79. # 'django.middleware.clickjacking.XFrameOptionsMiddleware',
  80. )
  81. ROOT_URLCONF = 'proj.urls'
  82. # Python dotted path to the WSGI application used by Django's runserver.
  83. WSGI_APPLICATION = 'proj.wsgi.application'
  84. TEMPLATE_DIRS = (
  85. # Put strings here, like "/home/html/django_templates"
  86. # or "C:/www/django/templates".
  87. # Always use forward slashes, even on Windows.
  88. # Don't forget to use absolute paths, not relative paths.
  89. )
  90. INSTALLED_APPS = (
  91. 'django.contrib.auth',
  92. 'django.contrib.contenttypes',
  93. 'django.contrib.sessions',
  94. 'django.contrib.sites',
  95. 'django.contrib.messages',
  96. 'django.contrib.staticfiles',
  97. 'tasks',
  98. 'demoapp',
  99. # Uncomment the next line to enable the admin:
  100. # 'django.contrib.admin',
  101. # Uncomment the next line to enable admin documentation:
  102. # 'django.contrib.admindocs',
  103. )
  104. # A sample logging configuration. The only tangible logging
  105. # performed by this configuration is to send an email to
  106. # the site admins on every HTTP 500 error when DEBUG=False.
  107. # See http://docs.djangoproject.com/en/dev/topics/logging for
  108. # more details on how to customize your logging configuration.
  109. LOGGING = {
  110. 'version': 1,
  111. 'disable_existing_loggers': False,
  112. 'filters': {
  113. 'require_debug_false': {
  114. '()': 'django.utils.log.RequireDebugFalse'
  115. }
  116. },
  117. 'handlers': {
  118. 'mail_admins': {
  119. 'level': 'ERROR',
  120. 'filters': ['require_debug_false'],
  121. 'class': 'django.utils.log.AdminEmailHandler'
  122. }
  123. },
  124. 'loggers': {
  125. 'django.request': {
  126. 'handlers': ['mail_admins'],
  127. 'level': 'ERROR',
  128. 'propagate': True,
  129. },
  130. }
  131. }