blob: b101d120c9c359b44000543b4cd502114815d853 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
from aloha.settings import *
DEBUG=False
TEMPLATE_DEBUG=DEBUG
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.mysql', # Add 'postgresql_psycopg2', 'postgresql', 'mysql', 'sqlite3' or 'oracle'.
'NAME': 'jamallotment', # Or path to database file if using sqlite3.
'USER': 'jam_user', # Not used with sqlite3.
'PASSWORD': 'Jam@2012Fossee', # Not used with sqlite3.
'HOST': '', # Set to empty string for localhost. Not used with sqlite3.
'PORT': '', # Set to empty string for default. Not used with sqlite3.
}
}
|