# HG changeset patch # User nishanth # Date 1275102924 -19800 # Node ID 0c8f277f2ea3b0b605eba130085476071101f75d # Parent 76e7f41b03efa440efac504bd1acb49f5b7dfaf9 finalised the settings.py diff -r 76e7f41b03ef -r 0c8f277f2ea3 settings.py --- a/settings.py Sat May 29 08:43:33 2010 +0530 +++ b/settings.py Sat May 29 08:45:24 2010 +0530 @@ -9,8 +9,8 @@ MANAGERS = ADMINS -DATABASE_ENGINE = '' # 'postgresql_psycopg2', 'postgresql', 'mysql', 'sqlite3' or 'oracle'. -DATABASE_NAME = '' # Or path to database file if using sqlite3. +DATABASE_ENGINE = 'sqlite3' # 'postgresql_psycopg2', 'postgresql', 'mysql', 'sqlite3' or 'oracle'. +DATABASE_NAME = 'sage.db' # Or path to database file if using sqlite3. DATABASE_USER = '' # Not used with sqlite3. DATABASE_PASSWORD = '' # Not used with sqlite3. DATABASE_HOST = '' # Set to empty string for localhost. Not used with sqlite3. @@ -69,7 +69,7 @@ # Put strings here, like "/home/html/django_templates" or "C:/www/django/templates". # Always use forward slashes, even on Windows. # Don't forget to use absolute paths, not relative paths. - '.', + './templates', ) INSTALLED_APPS = ( @@ -77,6 +77,7 @@ 'django.contrib.contenttypes', 'django.contrib.sessions', 'django.contrib.sites', + 'django.contrib.admin', ) APACHE_URL_PREFIX = "/sagedays/"