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'
|