Private
Public Access
1
0
Files
rowsandall/rowsandall_app/settings_test.py
Sander Roosendaal adce60d19a fix
2022-11-01 19:05:37 +01:00

13 lines
265 B
Python

from .settings_dev import *
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.sqlite3',
'NAME': os.path.join(BASE_DIR, 'db.sqlite3'),
'HOST': 'localhost',
'USER': '',
'PORT': 1,
'PASSWORD': 'aap'
},
}