summaryrefslogtreecommitdiff
path: root/django/conf/project_template
diff options
context:
space:
mode:
authorAdrian Holovaty <adrian@holovaty.com>2005-10-14 03:43:01 +0000
committerAdrian Holovaty <adrian@holovaty.com>2005-10-14 03:43:01 +0000
commitf2088d456c4ca394f59d179e990c6e611e92ff5f (patch)
tree95e6584c9c51021fcca9a9f9e4332f29fae341b3 /django/conf/project_template
parentd5bbe395c216f3b71ea1ab4a0d820df9a229d5b1 (diff)
Fixed #618 -- Added DATABASE_PORT setting. Thanks, Esaj
git-svn-id: http://code.djangoproject.com/svn/django/trunk@858 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'django/conf/project_template')
-rw-r--r--django/conf/project_template/settings/main.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/django/conf/project_template/settings/main.py b/django/conf/project_template/settings/main.py
index 56b1f023ce..38df2ad01d 100644
--- a/django/conf/project_template/settings/main.py
+++ b/django/conf/project_template/settings/main.py
@@ -15,6 +15,7 @@ DATABASE_NAME = '' # 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.
+DATABASE_PORT = '' # Set to empty string for default. Not used with sqlite3.
SITE_ID = 1