· 9 years ago · Feb 21, 2017, 08:44 AM
1# edit domain below
2ALLOWED_HOSTS = ['sest.gq']
3
4# Django settings for djangotest project.
5
6DEBUG = True
7TEMPLATE_DEBUG = DEBUG
8
9ADMINS = (
10 # ('Your Name', 'your_email@domain.com'),
11)
12
13MANAGERS = ADMINS
14
15DATABASE_ENGINE = '' # 'postgresql_psycopg2', 'postgresql', 'mysql', 'sqlite3' or 'ado_mssql'.
16DATABASE_NAME = '' # Or path to database file if using sqlite3.
17DATABASE_USER = '' # Not used with sqlite3.
18DATABASE_PASSWORD = '' # Not used with sqlite3.
19DATABASE_HOST = '' # Set to empty string for localhost. Not used with sqlite3.
20DATABASE_PORT = '' # Set to empty string for default. Not used with sqlite3.
21
22# Local time zone for this installation. Choices can be found here:
23# http://www.postgresql.org/docs/8.1/static/datetime-keywords.html#DATETIME-TIMEZONE-SET-TABLE
24# although not all variations may be possible on all operating systems.
25# If running in a Windows environment this must be set to the same as your
26# system time zone.
27TIME_ZONE = 'America/Chicago'
28
29# Language code for this installation. All choices can be found here:
30# http://www.w3.org/TR/REC-html40/struct/dirlang.html#langcodes
31# http://blogs.law.harvard.edu/tech/stories/storyReader$15
32LANGUAGE_CODE = 'en-us'
33
34SITE_ID = 1
35
36# If you set this to False, Django will make some optimizations so as not
37# to load the internationalization machinery.
38USE_I18N = True
39
40# Absolute path to the directory that holds media.
41# Example: "/home/media/media.lawrence.com/"
42MEDIA_ROOT = ''
43
44# URL that handles the media served from MEDIA_ROOT.
45# Example: "http://media.lawrence.com"
46MEDIA_URL = ''
47
48# URL prefix for admin media -- CSS, JavaScript and images. Make sure to use a
49# trailing slash.
50# Examples: "http://foo.com/media/", "/media/".
51ADMIN_MEDIA_PREFIX = '/media/'
52
53# Make this unique, and don't share it with anybody.
54SECRET_KEY = 'password'
55
56# List of callables that know how to import templates from various sources.
57TEMPLATE_LOADERS = (
58 'django.template.loaders.filesystem.load_template_source',
59 'django.template.loaders.app_directories.load_template_source',
60# 'django.template.loaders.eggs.load_template_source',
61)
62
63MIDDLEWARE_CLASSES = (
64 'django.middleware.common.CommonMiddleware',
65 'django.contrib.sessions.middleware.SessionMiddleware',
66 'django.contrib.auth.middleware.AuthenticationMiddleware',
67# 'django.middleware.doc.XViewMiddleware',
68 'django.contrib.admindocs.middleware.XViewMiddleware',
69)
70
71ROOT_URLCONF = 'urls'
72
73TEMPLATE_DIRS = (
74 # Put strings here, like "/home/html/django_templates" or "C:/www/django/templates".
75 # Always use forward slashes, even on Windows.
76 # Don't forget to use absolute paths, not relative paths.
77)
78
79INSTALLED_APPS = (
80 'django.contrib.auth',
81 'django.contrib.contenttypes',
82 'django.contrib.sessions',
83 'django.contrib.sites',
84)