1
0
Fork 1
mirror of https://github.com/coddingtonbear/django-mailbox.git synced 2026-07-09 22:38:19 +02:00

Avoid "settings.DATABASES is improperly configured. Please supply the NAME value."

This commit is contained in:
Adam Dobrawy 2018-04-21 07:27:48 +02:00
parent 7a39d3df47
commit 72cb0ea706
2 changed files with 2 additions and 0 deletions

1
.gitignore vendored
View file

@ -12,3 +12,4 @@ dummy_project/*
.cache/ .cache/
.tox/ .tox/
messages messages
*.sqlite3

View file

@ -1,5 +1,6 @@
DATABASES = { DATABASES = {
'default': { 'default': {
'NAME': 'db.sqlite3',
'ENGINE': 'django.db.backends.sqlite3', 'ENGINE': 'django.db.backends.sqlite3',
}, },
} }