This commit is contained in:
Timothy J. Baek 2024-05-26 01:16:58 -07:00
parent 1fce466253
commit 633607a5c2
1 changed files with 3 additions and 1 deletions

View File

@ -31,7 +31,9 @@ else:
DB = connect(DATABASE_URL)
log.info(f"Connected to a {DB.__class__.__name__} database.")
router = Router(
DB, migrate_dir=BACKEND_DIR / "apps" / "web" / "internal" / "migrations", logger=log
DB,
migrate_dir=BACKEND_DIR / "apps" / "webui" / "internal" / "migrations",
logger=log,
)
router.run()
DB.connect(reuse_if_open=True)