--- a/settings.py Sat May 29 19:35:49 2010 +0530
+++ b/settings.py Thu Jun 03 19:06:14 2010 +0530
@@ -1,16 +1,16 @@
# Django settings for sage_days project.
-DEBUG = True
+DEBUG = False
TEMPLATE_DEBUG = DEBUG
-ADMINS = (
+ADMINS = (('Anoop Jacob Thomas','anoop@fossee.in')
# ('Your Name', 'your_email@domain.com'),
)
MANAGERS = ADMINS
DATABASE_ENGINE = 'sqlite3' # 'postgresql_psycopg2', 'postgresql', 'mysql', 'sqlite3' or 'oracle'.
-DATABASE_NAME = 'sage.db' # Or path to database file if using sqlite3.
+DATABASE_NAME = '/var/www/html/sage_days/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',
+ '/var/www/html/sage_days/templates',
)
INSTALLED_APPS = (
@@ -81,5 +81,5 @@
'sage_days.sdi',
)
-APACHE_URL_PREFIX = "/sagedays/"
+APACHE_URL_PREFIX = "sage_days"
ADMIN_URL_PREFIX = "ditchax"