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:
parent
7a39d3df47
commit
72cb0ea706
2 changed files with 2 additions and 0 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
|
@ -12,3 +12,4 @@ dummy_project/*
|
||||||
.cache/
|
.cache/
|
||||||
.tox/
|
.tox/
|
||||||
messages
|
messages
|
||||||
|
*.sqlite3
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,6 @@
|
||||||
DATABASES = {
|
DATABASES = {
|
||||||
'default': {
|
'default': {
|
||||||
|
'NAME': 'db.sqlite3',
|
||||||
'ENGINE': 'django.db.backends.sqlite3',
|
'ENGINE': 'django.db.backends.sqlite3',
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue