Advertisement
Guest User

Untitled

a guest
Mar 26th, 2013
116
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 5.50 KB | None | 0 0
  1. # Django settings for Django_news project.
  2. import os
  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': 'news.sqllite',                      # 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. # Local time zone for this installation. Choices can be found here:
  24. # http://en.wikipedia.org/wiki/List_of_tz_zones_by_name
  25. # although not all choices may be available on all operating systems.
  26. # In a Windows environment this must be set to your system time zone.
  27. TIME_ZONE = 'Europe/Warsaw'
  28.  
  29. # Language code for this installation. All choices can be found here:
  30. # http://www.i18nguy.com/unicode/language-identifiers.html
  31. LANGUAGE_CODE = 'pl'
  32.  
  33. SITE_ID = 1
  34.  
  35. # If you set this to False, Django will make some optimizations so as not
  36. # to load the internationalization machinery.
  37. USE_I18N = True
  38.  
  39. # If you set this to False, Django will not format dates, numbers and
  40. # calendars according to the current locale.
  41. USE_L10N = True
  42.  
  43. # If you set this to False, Django will not use timezone-aware datetimes.
  44. USE_TZ = True
  45.  
  46. # Absolute filesystem path to the directory that will hold user-uploaded files.
  47. # Example: "/home/media/media.lawrence.com/media/"
  48. MEDIA_ROOT = ''
  49.  
  50. # URL that handles the media served from MEDIA_ROOT. Make sure to use a
  51. # trailing slash.
  52. # Examples: "http://media.lawrence.com/media/", "http://example.com/media/"
  53. MEDIA_URL = ''
  54.  
  55. # Absolute path to the directory static files should be collected to.
  56. # Don't put anything in this directory yourself; store your static files
  57. # in apps' "static/" subdirectories and in STATICFILES_DIRS.
  58. # Example: "/home/media/media.lawrence.com/static/"
  59. STATIC_ROOT = ''
  60.  
  61. # URL prefix for static files.
  62. # Example: "http://media.lawrence.com/static/"
  63. STATIC_URL = '/static/'
  64.  
  65. # Additional locations of static files
  66. STATICFILES_DIRS = (
  67.     # Put strings here, like "/home/html/static" or "C:/www/django/static".
  68.     # Always use forward slashes, even on Windows.
  69.     # Don't forget to use absolute paths, not relative paths.
  70.     os.path.join(STATIC_URL, 'staticfiles'),
  71. )
  72.  
  73. # List of finder classes that know how to find static files in
  74. # various locations.
  75. STATICFILES_FINDERS = (
  76.     'django.contrib.staticfiles.finders.FileSystemFinder',
  77.     'django.contrib.staticfiles.finders.AppDirectoriesFinder',
  78. #    'django.contrib.staticfiles.finders.DefaultStorageFinder',
  79. )
  80.  
  81. # Make this unique, and don't share it with anybody.
  82. SECRET_KEY = 'roojs=n#_3mavo8x2rmfsr8rp@dr&#tzeb$8#oa_8l$_bon)dq'
  83.  
  84. # List of callables that know how to import templates from various sources.
  85. TEMPLATE_LOADERS = (
  86.     'django.template.loaders.filesystem.Loader',
  87.     'django.template.loaders.app_directories.Loader',
  88. #     'django.template.loaders.eggs.Loader',
  89. )
  90.  
  91. MIDDLEWARE_CLASSES = (
  92.     'django.middleware.common.CommonMiddleware',
  93.     'django.contrib.sessions.middleware.SessionMiddleware',
  94.     'django.middleware.csrf.CsrfViewMiddleware',
  95.     'django.contrib.auth.middleware.AuthenticationMiddleware',
  96.     'django.contrib.messages.middleware.MessageMiddleware',
  97.     # Uncomment the next line for simple clickjacking protection:
  98.     # 'django.middleware.clickjacking.XFrameOptionsMiddleware',
  99. )
  100.  
  101. ROOT_URLCONF = 'Django_news.urls'
  102.  
  103. # Python dotted path to the WSGI application used by Django's runserver.
  104. WSGI_APPLICATION = 'Django_news.wsgi.application'
  105.  
  106. TEMPLATE_DIRS = ('C:/Users/Dargol/PycharmProjects/Django_news/templates',)
  107. TEMPLATE_CONTEXT_PROCESSORS = (
  108.     'django.core.context_processors.debug',
  109.     'django.core.context_processors.i18n',
  110.     'django.core.context_processors.media',
  111.     'django.core.context_processors.static',
  112.     'django.contrib.auth.context_processors.auth',
  113.     'django.contrib.messages.context_processors.messages',
  114.     )
  115. INSTALLED_APPS = (
  116.     'django.contrib.auth',
  117.     'django.contrib.contenttypes',
  118.     'django.contrib.sessions',
  119.     'django.contrib.sites',
  120.     'django.contrib.messages',
  121.     'django.contrib.staticfiles',
  122.     'news',
  123.     # Uncomment the next line to enable the admin:
  124.     'django.contrib.admin',
  125.     # Uncomment the next line to enable admin documentation:
  126.     # 'django.contrib.admindocs',
  127. )
  128.  
  129. # A sample logging configuration. The only tangible logging
  130. # performed by this configuration is to send an email to
  131. # the site admins on every HTTP 500 error when DEBUG=False.
  132. # See http://docs.djangoproject.com/en/dev/topics/logging for
  133. # more details on how to customize your logging configuration.
  134. LOGGING = {
  135.     'version': 1,
  136.     'disable_existing_loggers': False,
  137.     'filters': {
  138.         'require_debug_false': {
  139.             '()': 'django.utils.log.RequireDebugFalse'
  140.         }
  141.     },
  142.     'handlers': {
  143.         'mail_admins': {
  144.             'level': 'ERROR',
  145.             'filters': ['require_debug_false'],
  146.             'class': 'django.utils.log.AdminEmailHandler'
  147.         }
  148.     },
  149.     'loggers': {
  150.         'django.request': {
  151.             'handlers': ['mail_admins'],
  152.             'level': 'ERROR',
  153.             'propagate': True,
  154.         },
  155.     }
  156. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement