1 # Django settings for encyclr project.
3 SETTINGS_ROOT
= os
.path
.dirname(__file__
)
9 ('Milah Keeler', 'milah.keeler@gmail.com'),
14 DATABASE_ENGINE
= 'sqlite3' # 'postgresql_psycopg2', 'postgresql', 'mysql', 'sqlite3' or 'oracle'.
15 DATABASE_NAME
= '/var/www/django/encyclr/encyclr.sqlite' # Or path to database file if using sqlite3.
16 #DATABASE_NAME = 'encyclr.sqlite' # Or path to database file if using sqlite3.
17 DATABASE_USER
= '' # Not used with sqlite3.
18 DATABASE_PASSWORD
= '' # Not used with sqlite3.
19 DATABASE_HOST
= '' # Set to empty string for localhost. Not used with sqlite3.
20 DATABASE_PORT
= '' # Set to empty string for default. Not used with sqlite3.
22 # Local time zone for this installation. Choices can be found here:
23 # http://en.wikipedia.org/wiki/List_of_tz_zones_by_name
24 # although not all choices may be available on all operating systems.
25 # If running in a Windows environment this must be set to the same as your
27 TIME_ZONE
= 'US/Eastern'
29 # Language code for this installation. All choices can be found here:
30 # http://www.i18nguy.com/unicode/language-identifiers.html
31 LANGUAGE_CODE
= 'en-us'
35 # If you set this to False, Django will make some optimizations so as not
36 # to load the internationalization machinery.
39 # Absolute path to the directory that holds media.
40 # Example: "/home/media/media.lawrence.com/"
41 MEDIA_ROOT
= os
.path
.join(SETTINGS_ROOT
, "media")
43 # URL that handles the media served from MEDIA_ROOT. Make sure to use a
44 # trailing slash if there is a path component (optional in other cases).
45 # Examples: "http://media.lawrence.com", "http://example.com/media/"
46 MEDIA_URL
= '/encyclr/site_media/'
48 # URL prefix for admin media -- CSS, JavaScript and images. Make sure to use a
50 # Examples: "http://foo.com/media/", "/media/".
51 ADMIN_MEDIA_PREFIX
= '/django-media/'
53 # Make this unique, and don't share it with anybody.
54 SECRET_KEY
= '#k&1pj-z8dfsmsd(#gxwq*oa933+b4axjcsd4c%p)*-ecb=$5b'
56 # List of callables that know how to import templates from various sources.
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',
62 TEMPLATE_CONTEXT_PROCESSORS
= (
63 'django.core.context_processors.auth',
64 'django.core.context_processors.debug',
65 'django.core.context_processors.i18n',
66 'django.core.context_processors.media',
67 'django.core.context_processors.request',
70 MIDDLEWARE_CLASSES
= (
71 'django.middleware.common.CommonMiddleware',
72 'django.contrib.sessions.middleware.SessionMiddleware',
73 'django.contrib.auth.middleware.AuthenticationMiddleware',
76 ROOT_URLCONF
= 'encyclr.urls'
79 '/var/www/django/encyclr',
80 # Put strings here, like "/home/html/django_templates" or "C:/www/django/templates".
81 # Always use forward slashes, even on Windows.
82 # Don't forget to use absolute paths, not relative paths.
86 'django.contrib.auth',
87 'django.contrib.contenttypes',
88 'django.contrib.sessions',
89 'django.contrib.sites',
90 'django.contrib.admin',