14 lines
253 B
Python
14 lines
253 B
Python
|
from .base import *
|
||
|
|
||
|
DEBUG = True
|
||
|
|
||
|
# Database
|
||
|
# https://docs.djangoproject.com/en/1.11/ref/settings/#databases
|
||
|
|
||
|
DATABASES = {
|
||
|
'default': {
|
||
|
'ENGINE': 'django.db.backends.sqlite3',
|
||
|
'NAME': os.path.join(BASE_DIR, 'db.sqlite3'),
|
||
|
}
|
||
|
}
|