# HG changeset patch # User Madhusudan.C.S # Date 1251903427 14400 # Node ID eb8e0031287789bd4ca16abed4d959c4bf66a326 # Parent 962b45987a02e2dbb9a785465f2457f3901e0e99 Updated settings.py with DB info. diff -r 962b45987a02 -r eb8e00312877 apache/django.wsgi --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/apache/django.wsgi Wed Sep 02 10:57:07 2009 -0400 @@ -0,0 +1,10 @@ +import os +import sys + +sys.path.append('/home/hg/repos/') + +os.environ['DJANGO_SETTINGS_MODULE'] = 'spoken_tut.settings' + +import django.core.handlers.wsgi +application = django.core.handlers.wsgi.WSGIHandler() + diff -r 962b45987a02 -r eb8e00312877 settings.py --- a/settings.py Wed Sep 02 20:17:47 2009 +0530 +++ b/settings.py Wed Sep 02 10:57:07 2009 -0400 @@ -1,5 +1,7 @@ # Django settings for spoken_tut project. +import os + DEBUG = True TEMPLATE_DEBUG = DEBUG @@ -14,7 +16,7 @@ DATABASE_ENGINE = 'mysql' # 'postgresql_psycopg2', 'postgresql', 'mysql', 'sqlite3' or 'oracle'. DATABASE_NAME = 'uploads' # Or path to database file if using sqlite3. -DATABASE_USER = 'nme_ict' # Not used with sqlite3. +DATABASE_USER = 'spoken' # Not used with sqlite3. DATABASE_PASSWORD = 'NotMeICT' # Not used with sqlite3. DATABASE_HOST = '' # Set to empty string for localhost. Not used with sqlite3. DATABASE_PORT = '' # Set to empty string for default. Not used with sqlite3.