12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091 |
- from __future__ import absolute_import, unicode_literals
- DEBUG = True
- TEMPLATE_DEBUG = DEBUG
- ADMINS = (
-
- )
- MANAGERS = ADMINS
- DATABASE_ENGINE = ''
- DATABASE_NAME = ''
- DATABASE_USER = ''
- DATABASE_PASSWORD = ''
- DATABASE_HOST = ''
- DATABASE_PORT = ''
- TIME_ZONE = 'America/Chicago'
- LANGUAGE_CODE = 'en-us'
- SITE_ID = 1
- USE_I18N = True
- MEDIA_ROOT = ''
- MEDIA_URL = ''
- ADMIN_MEDIA_PREFIX = '/media/'
- SECRET_KEY = 'p^@q$@nal#-0+w@v_3bcj2ug(zbh5_m2on8^kkn&!e!b=a@o__'
- TEMPLATE_LOADERS = (
- 'django.template.loaders.filesystem.load_template_source',
- 'django.template.loaders.app_directories.load_template_source',
- )
- MIDDLEWARE_CLASSES = (
- 'django.middleware.common.CommonMiddleware',
- 'django.contrib.sessions.middleware.SessionMiddleware',
- 'django.contrib.auth.middleware.AuthenticationMiddleware',
- )
- ROOT_URLCONF = 'httpexample.urls'
- TEMPLATE_DIRS = (
-
-
-
-
- )
- INSTALLED_APPS = (
- 'django.contrib.auth',
- 'django.contrib.contenttypes',
- 'django.contrib.sessions',
- 'django.contrib.sites',
- )
|