Fix containerised restarts

This commit is contained in:
2026-03-01 17:27:48 +00:00
parent 4521755344
commit d22924f6aa
7 changed files with 122 additions and 19 deletions

View File

@@ -130,7 +130,7 @@ WSGI_APPLICATION = "app.wsgi.application"
DATABASES = {
"default": {
"ENGINE": "django.db.backends.sqlite3",
"NAME": "/conf/db.sqlite3",
"NAME": os.getenv("APP_DATABASE_PATH", "/conf/db.sqlite3"),
}
}