1
0
mirror of https://github.com/django/django.git synced 2025-07-04 17:59:13 +00:00

[multi-db] Added DATABASES = {} to global_settings

git-svn-id: http://code.djangoproject.com/svn/django/branches/multiple-db-support@3239 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Jason Pellerin 2006-06-30 18:00:58 +00:00
parent a50d895f28
commit 3d8ebb3bec

View File

@ -91,6 +91,9 @@ 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.
# Optional named database connections in addition to the default.
DATABASES = {}
# Host for sending e-mail.
EMAIL_HOST = 'localhost'