blob: 6a6fc7d4d813e664d460c5202353c37397a47b31 [file] [log] [blame]
Aviv Keshet62cf0472013-05-04 22:40:17 -07001"""Django settings for lightweight in-memory model database.
2"""
3
4import common
5
6LIGHTWEIGHT_DEFAULT = {
7 'ENGINE': 'django.db.backends.sqlite3',
8 'NAME': ':memory:'
9}
10
11DATABASES = {'default': LIGHTWEIGHT_DEFAULT}
12
13INSTALLED_APPS = (
14 'frontend.afe',
15# 'frontend.tko',
16)
17
Brian Norris2aac43a2018-04-10 10:59:11 -070018# Use UTC, and let the logging module handle local time.
19USE_TZ = False
20TIME_ZONE = None
21
Aviv Keshet62cf0472013-05-04 22:40:17 -070022# Required for Django to start, even though not used.
23SECRET_KEY = 'Three can keep a secret if two are dead.'
24
25AUTOTEST_CREATE_ADMIN_GROUPS = False