refactor(base.py): use relative DB path

This commit is contained in:
2026-04-22 20:38:14 +02:00
parent ffa0b03661
commit 2a15556513

View File

@@ -161,8 +161,7 @@ OAUTH2_PROVIDER = {
DATABASES = {
"default": {
"ENGINE": "django.db.backends.sqlite3",
# "NAME": BASE_DIR / "db" / "db.sqlite3",
"NAME": "/app/db/db.sqlite3",
"NAME": BASE_DIR / "db" / "db.sqlite3",
}
}