2015-05-21 01:10:09 -06:00
|
|
|
# from dynamicweb.settings import SITE_ROOT
|
2015-05-20 20:57:22 -06:00
|
|
|
|
|
|
|
|
DEBUG = True
|
|
|
|
|
TEMPLATE_DEBUG = DEBUG
|
|
|
|
|
|
|
|
|
|
DATABASES = {
|
|
|
|
|
'default': {
|
|
|
|
|
'ENGINE': 'django.db.backends.postgresql_psycopg2',
|
|
|
|
|
'NAME': 'db_name',
|
|
|
|
|
'USER': 'username',
|
|
|
|
|
'PASSWORD': 'password',
|
|
|
|
|
}
|
|
|
|
|
}
|