8

adds sqlite to sandbox and fixes summary panel

This commit is contained in:
blurrah
2017-05-08 10:39:30 +02:00
parent 47123ce723
commit e451f792e3
3 changed files with 8 additions and 6 deletions

View File

@@ -7,7 +7,7 @@ import django
DATABASES = {
'default': {
'ENGINE': os.environ.get('DATABASE_ENGINE', 'django.db.backends.sqlite3'),
'NAME': os.environ.get('DATABASE_NAME', 'db.sqlite'),
'NAME': os.environ.get('DATABASE_NAME', 'db.sqlite3'),
}
}