Initial bootstrap to add admin user

This commit is contained in:
Leo Vasanko
2025-08-06 12:16:37 -06:00
parent f96668b135
commit 5a129220aa
4 changed files with 261 additions and 1 deletions

View File

@@ -26,6 +26,11 @@ async def lifespan(app: FastAPI):
await sql.init()
# Bootstrap system if needed
from ..bootstrap import bootstrap_if_needed
await bootstrap_if_needed()
yield