Newer
Older
# See https://docs.djangoproject.com/en/dev/howto/deployment/checklist/
]
DATABASES = {
'default': {
'ENGINE':'django.db.backends.postgresql_psycopg2',
'NAME': 'courseflow',
'USER': 'courseflow',
'PASSWORD': '<PASSWORD>',
'HOST': '127.0.0.1',
'PORT': '5432',
}
}
# SECURITY WARNING: don't run with debug turned on in production!