13 lines
265 B
Python
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'
|
|
},
|
|
}
|