summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdrian Holovaty <adrian@holovaty.com>2005-07-15 22:32:37 +0000
committerAdrian Holovaty <adrian@holovaty.com>2005-07-15 22:32:37 +0000
commit5c7b04122a0411df41d7abd52e54b4080357ea80 (patch)
treeb18c999d1be69eebcbefb305ecb3bcb2cc31dd2a
parent8718675469fd3dce5213be65346c56c24fa3e701 (diff)
Added DATABASE_PASSWORD stub to project_template/settings/main
git-svn-id: http://code.djangoproject.com/svn/django/trunk@81 bcc190cf-cafb-0310-a4f2-bffc1f526a37
-rw-r--r--django/conf/project_template/settings/main.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/django/conf/project_template/settings/main.py b/django/conf/project_template/settings/main.py
index 08ac9d4026..21cefac0f6 100644
--- a/django/conf/project_template/settings/main.py
+++ b/django/conf/project_template/settings/main.py
@@ -10,10 +10,11 @@ MANAGERS = ADMINS
LANGUAGE_CODE = 'en-us'
-DATABASE_ENGINE = 'postgresql' # Either 'postgresql' or 'mysql'.
+DATABASE_ENGINE = 'postgresql' # 'postgresql' or 'mysql'
DATABASE_NAME = ''
DATABASE_USER = ''
-DATABASE_HOST = '' # Set to empty string for localhost.
+DATABASE_PASSWORD = ''
+DATABASE_HOST = '' # Set to empty string for localhost
# Absolute path to the directory that holds media.
# Example: "/home/media/media.lawrence.com/"