blob: 636785f1f8f60049e3012f7ff578540beca01bd2 (
plain)
1
2
3
4
5
6
7
8
9
10
|
from testapp.settings import *
DEBUG=False
TEMPLATE_DEBUG=DEBUG
DATABASE_ENGINE = 'django.db.backends.mysql'
DATABASE_NAME = 'online_test'
DATABASE_USER = 'online_test_user'
# Imports DATABASE_PASSWORD from testapp/local.py that is not part of git repo
from testapp.local import DATABASE_PASSWORD
|