wiki-eleves/WikiENS/settings/local.py

17 lines
292 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",
"NAME": os.path.join(BASE_DIR, "db.sqlite3")
}
}