feat(v2): add validated runtime and metadata store

This commit is contained in:
2026-07-27 19:24:49 +02:00
parent 8f784848d7
commit 8d1de81f2b
14 changed files with 1225 additions and 4 deletions
+2 -1
View File
@@ -51,7 +51,8 @@ def settings_for(tmp_path: Path) -> Any:
def alembic_config(database_url: str) -> Config:
config = Config("backend/alembic.ini")
project_root = Path(__file__).resolve().parents[2]
config = Config(project_root / "backend" / "alembic.ini")
config.set_main_option("sqlalchemy.url", database_url)
return config