Advertisement
Guest User

settings

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