make sure settings are dicts

This commit is contained in:
j 2018-11-15 10:28:30 +00:00
commit 687738ff46
7 changed files with 53 additions and 31 deletions

View file

@ -170,6 +170,13 @@ LOGGING = {
}
}
CACHES = {
'default': {
'BACKEND': 'django.core.cache.backends.db.DatabaseCache',
'LOCATION': 'cache',
}
}
AUTH_PROFILE_MODULE = 'user.UserProfile'
AUTH_CHECK_USERNAME = True
FFMPEG = 'ffmpeg'