summaryrefslogtreecommitdiff
path: root/greenbox/settings.py
diff options
context:
space:
mode:
Diffstat (limited to 'greenbox/settings.py')
-rwxr-xr-xgreenbox/settings.py42
1 files changed, 10 insertions, 32 deletions
diff --git a/greenbox/settings.py b/greenbox/settings.py
index 6dd5f42..1c9d387 100755
--- a/greenbox/settings.py
+++ b/greenbox/settings.py
@@ -1,37 +1,20 @@
1# Django settings for greenbox project. 1SITE_ID = 1
2 2USE_I18N = False
3DEBUG = True 3DEBUG = True
4TEMPLATE_DEBUG = DEBUG 4TEMPLATE_DEBUG = DEBUG
5 5
6ADMINS = ( 6ADMINS = (
7 # ('Your Name', 'your_email@domain.com'), 7 ('Mike Crute', 'mcrute@gmail.com'),
8) 8)
9 9
10MANAGERS = ADMINS 10MANAGERS = ADMINS
11 11
12DATABASE_ENGINE = '' # 'postgresql_psycopg2', 'postgresql', 'mysql', 'sqlite3' or 'oracle'. 12DATABASE_ENGINE = 'sqlite3'
13DATABASE_NAME = '' # Or path to database file if using sqlite3. 13DATABASE_NAME = 'greenbox.db'
14DATABASE_USER = '' # Not used with sqlite3.
15DATABASE_PASSWORD = '' # Not used with sqlite3.
16DATABASE_HOST = '' # Set to empty string for localhost. Not used with sqlite3.
17DATABASE_PORT = '' # Set to empty string for default. Not used with sqlite3.
18
19# Local time zone for this installation. Choices can be found here:
20# http://en.wikipedia.org/wiki/List_of_tz_zones_by_name
21# although not all choices may be available on all operating systems.
22# If running in a Windows environment this must be set to the same as your
23# system time zone.
24TIME_ZONE = 'America/Chicago'
25 14
26# Language code for this installation. All choices can be found here: 15TIME_ZONE = 'America/New_York'
27# http://www.i18nguy.com/unicode/language-identifiers.html
28LANGUAGE_CODE = 'en-us' 16LANGUAGE_CODE = 'en-us'
29 17ROOT_URLCONF = 'greenbox.urls'
30SITE_ID = 1
31
32# If you set this to False, Django will make some optimizations so as not
33# to load the internationalization machinery.
34USE_I18N = True
35 18
36# Absolute path to the directory that holds media. 19# Absolute path to the directory that holds media.
37# Example: "/home/media/media.lawrence.com/" 20# Example: "/home/media/media.lawrence.com/"
@@ -45,16 +28,13 @@ MEDIA_URL = ''
45# URL prefix for admin media -- CSS, JavaScript and images. Make sure to use a 28# URL prefix for admin media -- CSS, JavaScript and images. Make sure to use a
46# trailing slash. 29# trailing slash.
47# Examples: "http://foo.com/media/", "/media/". 30# Examples: "http://foo.com/media/", "/media/".
48ADMIN_MEDIA_PREFIX = '/media/' 31ADMIN_MEDIA_PREFIX = '/recipe/media/'
49 32
50# Make this unique, and don't share it with anybody.
51SECRET_KEY = 'zki4e4!80ar7^1w6f_c2u^5#=r(7#4%0u^3il^@__#3zf^u+f)' 33SECRET_KEY = 'zki4e4!80ar7^1w6f_c2u^5#=r(7#4%0u^3il^@__#3zf^u+f)'
52 34
53# List of callables that know how to import templates from various sources.
54TEMPLATE_LOADERS = ( 35TEMPLATE_LOADERS = (
55 'django.template.loaders.filesystem.load_template_source', 36 'django.template.loaders.filesystem.load_template_source',
56 'django.template.loaders.app_directories.load_template_source', 37 'django.template.loaders.app_directories.load_template_source',
57# 'django.template.loaders.eggs.load_template_source',
58) 38)
59 39
60MIDDLEWARE_CLASSES = ( 40MIDDLEWARE_CLASSES = (
@@ -63,12 +43,8 @@ MIDDLEWARE_CLASSES = (
63 'django.contrib.auth.middleware.AuthenticationMiddleware', 43 'django.contrib.auth.middleware.AuthenticationMiddleware',
64) 44)
65 45
66ROOT_URLCONF = 'greenbox.urls'
67
68TEMPLATE_DIRS = ( 46TEMPLATE_DIRS = (
69 # Put strings here, like "/home/html/django_templates" or "C:/www/django/templates". 47 # Put strings here, like "/home/html/django_templates" or "C:/www/django/templates".
70 # Always use forward slashes, even on Windows.
71 # Don't forget to use absolute paths, not relative paths.
72) 48)
73 49
74INSTALLED_APPS = ( 50INSTALLED_APPS = (
@@ -76,4 +52,6 @@ INSTALLED_APPS = (
76 'django.contrib.contenttypes', 52 'django.contrib.contenttypes',
77 'django.contrib.sessions', 53 'django.contrib.sessions',
78 'django.contrib.sites', 54 'django.contrib.sites',
55 'django.contrib.admin',
56 'greenbox.recipe',
79) 57)