Fix database path in config file

This commit is contained in:
Automated Action 2025-05-12 14:17:49 +00:00
parent 70cb768862
commit 984bfc5e8f

View File

@ -16,4 +16,4 @@ OPENWEATHERMAP_BASE_URL = "https://api.openweathermap.org/data/2.5"
DB_DIR = Path("/app") / "storage" / "db"
DB_DIR.mkdir(parents=True, exist_ok=True)
SQLALCHEMY_DATABASE_URL = f"sqlite:///{DB_DIR}/db.sqlite"
SQLALCHEMY_DATABASE_URL = f"sqlite:///projects/weatherdataapi-lfwvmn/app/storage/db/db.sqlite"