blob: 312e838ddc87e3de9be5529403ca5f60d681ba68 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
from testapp.settings import *
DEBUG=False
TEMPLATE_DEBUG=DEBUG
from testapp.local import *
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
|