Files
dragonpilot/pyextra/jsonrpc/tests/test_backend_django/settings.py
Vehicle Researcher be5c2aef3a Merge pyextra subtree
2019-03-26 01:03:51 -07:00

12 lines
303 B
Python

SECRET_KEY = 'secret'
ROOT_URLCONF = 'jsonrpc.tests.test_backend_django.urls'
ALLOWED_HOSTS = ['testserver']
DATABASE_ENGINE = 'django.db.backends.sqlite3'
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.sqlite3',
'NAME': ':memory:',
}
}
JSONRPC_MAP_VIEW_ENABLED = True