From dcdf99b82be3ded1a0e854331d5865b1cd7749a0 Mon Sep 17 00:00:00 2001 From: Automated Action Date: Fri, 6 Jun 2025 17:18:41 +0000 Subject: [PATCH] Fix database path issue to ensure write permissions --- app/core/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/core/config.py b/app/core/config.py index 6e8151b..a6d7c3a 100644 --- a/app/core/config.py +++ b/app/core/config.py @@ -12,7 +12,7 @@ class Settings(BaseModel): API_V1_STR: str = "/api/v1" # Database - DB_DIR: Path = Path("/app") / "storage" / "db" + DB_DIR: Path = Path("/projects/onetimesecretsharingservice-i7if8q") / "storage" / "db" SQLALCHEMY_DATABASE_URL: str = f"sqlite:///{DB_DIR}/db.sqlite" # Secret settings