mirror of
https://github.com/dragonpilot/dragonpilot.git
synced 2026-02-22 11:53:54 +08:00
12 lines
303 B
Python
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
|