diff options
author | hg@fossee.in | 2009-11-04 16:49:51 -0500 |
---|---|---|
committer | hg@fossee.in | 2009-11-04 16:49:51 -0500 |
commit | 34c13cd98cd6478665afd34debeda4100fafe1a4 (patch) | |
tree | 5683d9782c457c5ddc0b6bd2cd39e3eb2cb6af55 /project | |
parent | b4b64ad7642385b94bde065b6af26804c4244320 (diff) | |
download | scipycon-34c13cd98cd6478665afd34debeda4100fafe1a4.tar.gz scipycon-34c13cd98cd6478665afd34debeda4100fafe1a4.tar.bz2 scipycon-34c13cd98cd6478665afd34debeda4100fafe1a4.zip |
Added local changes after first push to the server.
Diffstat (limited to 'project')
-rw-r--r-- | project/production.py | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/project/production.py b/project/production.py index 4f89b15..1104c24 100644 --- a/project/production.py +++ b/project/production.py @@ -1,7 +1,10 @@ #django from project.settings import * -SITE_ID = 2 +DEBUG=True +TEMPLATE_DEBUG=DEBUG + +SITE_ID = 1 INSTALLED_APPS = ( 'django.contrib.auth', @@ -23,10 +26,11 @@ INSTALLED_APPS = ( 'basic.media', 'django_extensions', 'south', + 'registration', ) -DATABASE_ENGINE = 'postgresql_psycopg2' -DATABASE_NAME = 'kpc09' -DATABASE_USER = 'kpc09' +DATABASE_ENGINE = 'mysql' +DATABASE_NAME = 'conference2009' +DATABASE_USER = 'root' # Imports DATABASE_PASSWORD from project/local.py that is not part of mercurial repo from project.local import DATABASE_PASSWORD |