13 lines
240 B
Text
13 lines
240 B
Text
# from dynamicweb.settings import SITE_ROOT
|
|
|
|
DEBUG = True
|
|
TEMPLATE_DEBUG = DEBUG
|
|
|
|
DATABASES = {
|
|
'default': {
|
|
'ENGINE': 'django.db.backends.postgresql_psycopg2',
|
|
'NAME': 'db_name',
|
|
'USER': 'username',
|
|
'PASSWORD': 'password',
|
|
}
|
|
}
|