aboutsummaryrefslogtreecommitdiff
path: root/codemash/settings.py
diff options
context:
space:
mode:
Diffstat (limited to 'codemash/settings.py')
-rw-r--r--codemash/settings.py14
1 files changed, 5 insertions, 9 deletions
diff --git a/codemash/settings.py b/codemash/settings.py
index 23b1b93..0285da9 100644
--- a/codemash/settings.py
+++ b/codemash/settings.py
@@ -11,20 +11,15 @@ ADMINS = (
11 11
12MANAGERS = ADMINS 12MANAGERS = ADMINS
13 13
14PROJECT_ROOT = os.path.abspath(os.path.join(os.path.dirname(__file__), ".."))
15
14DATABASES = { 16DATABASES = {
15 'default': { 17 'default': {
16 'ENGINE': 'django.db.backends.', # Add 'postgresql_psycopg2', 'mysql', 'sqlite3' or 'oracle'. 18 'ENGINE': 'django.db.backends.sqlite3',
17 'NAME': '', # Or path to database file if using sqlite3. 19 'NAME': os.path.join(PROJECT_ROOT, "database.db"),
18 # The following settings are not used with sqlite3:
19 'USER': '',
20 'PASSWORD': '',
21 'HOST': '', # Empty for localhost through domain sockets or '127.0.0.1' for localhost through TCP.
22 'PORT': '', # Set to empty string for default.
23 } 20 }
24} 21}
25 22
26PROJECT_ROOT = os.path.abspath(os.path.join(os.path.dirname(__file__), ".."))
27
28# Local time zone for this installation. Choices can be found here: 23# Local time zone for this installation. Choices can be found here:
29# http://en.wikipedia.org/wiki/List_of_tz_zones_by_name 24# http://en.wikipedia.org/wiki/List_of_tz_zones_by_name
30# although not all choices may be available on all operating systems. 25# although not all choices may be available on all operating systems.
@@ -133,6 +128,7 @@ INSTALLED_APPS = (
133 # 'django.contrib.admindocs', 128 # 'django.contrib.admindocs',
134 129
135 'contact', 130 'contact',
131 'accounts',
136) 132)
137 133
138# A sample logging configuration. The only tangible logging 134# A sample logging configuration. The only tangible logging