forked from mirror/django-mailbox
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/
|
||||
.tox/
|
||||
messages
|
||||
*.sqlite3
|
||||
|
|
|
|||
|
|
@ -1,5 +1,6 @@
|
|||
DATABASES = {
|
||||
'default': {
|
||||
'NAME': 'db.sqlite3',
|
||||
'ENGINE': 'django.db.backends.sqlite3',
|
||||
},
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue