wiki-eleves/app/settings/local.py

17 lines
293 B
Python
Raw Normal View History

import os
from .common import * # noqa
2019-12-24 16:50:54 +01:00
from .common import BASE_DIR
EMAIL_BACKEND = "django.core.mail.backends.console.EmailBackend"
DEBUG = True
DATABASES = {
"default": {
"ENGINE": "django.db.backends.sqlite3",
2019-12-24 17:07:10 +01:00
"NAME": os.path.join(BASE_DIR, "db.sqlite3"),
}
}