needed by weblate OBS-URL: https://build.opensuse.org/request/show/1273469 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:django/python-djangorestframework-csv?expand=0&rev=1
16 lines
244 B
Python
16 lines
244 B
Python
USE_TZ = True
|
|
|
|
DATABASES = {
|
|
'default': {
|
|
'ENGINE': 'django.db.backends.sqlite3',
|
|
'NAME': ':memory:',
|
|
},
|
|
}
|
|
|
|
INSTALLED_APPS = (
|
|
'django.contrib.contenttypes',
|
|
'rest_framework_csv',
|
|
)
|
|
|
|
SECRET_KEY = 'testsecretkey'
|