Private
Public Access
1
0

passing tests

This commit is contained in:
Sander Roosendaal
2019-07-30 21:47:53 +02:00
parent 1269a7c7fe
commit ad68b849a9
5 changed files with 33 additions and 15 deletions

View File

@@ -0,0 +1,9 @@
from .settings_dev import *
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.sqlite3',
'NAME': os.path.join(BASE_DIR, 'db.sqlite3'),
'HOST': 'localhost',
},
}