Add mixins and adjust database path

This commit is contained in:
2023-02-10 20:53:11 +00:00
parent 330cc6c401
commit 115c6dd1ad
3 changed files with 4 additions and 2 deletions

View File

@@ -43,6 +43,7 @@ INSTALLED_APPS = [
"django_tables2",
"django_tables2_bulma_template",
"prettyjson",
"mixins",
]
CRISPY_TEMPLATE_PACK = "bulma"
CRISPY_ALLOWED_TEMPLATE_PACKS = ("bulma",)
@@ -87,7 +88,7 @@ WSGI_APPLICATION = "app.wsgi.application"
DATABASES = {
"default": {
"ENGINE": "django.db.backends.sqlite3",
"NAME": BASE_DIR / "db.sqlite3",
"NAME": "/conf/db.sqlite3",
}
}