Include database file properly

This commit is contained in:
2022-10-15 22:36:11 +01:00
parent 3b26d413a6
commit 5995ded170
4 changed files with 5 additions and 6 deletions

View File

@@ -96,7 +96,7 @@ WSGI_APPLICATION = "app.wsgi.application"
DATABASES = {
"default": {
"ENGINE": "django.db.backends.sqlite3",
"NAME": BASE_DIR / "db.sqlite3",
"NAME": "/conf/db.sqlite3",
}
}