blob: ea179a59a37d140b08766ed7e82438ad182544bf [file] [log] [blame]
"""Django settings for lightweight in-memory model database.
"""
import common
LIGHTWEIGHT_DEFAULT = {
'ENGINE': 'django.db.backends.sqlite3',
'NAME': ':memory:'
}
DATABASES = {'default': LIGHTWEIGHT_DEFAULT}
INSTALLED_APPS = (
'frontend.afe',
# 'frontend.tko',
)
# Required for Django to start, even though not used.
SECRET_KEY = 'Three can keep a secret if two are dead.'
AUTOTEST_CREATE_ADMIN_GROUPS = False