Initial bootstrap to add admin user

This commit is contained in:
2025-08-07 00:16:37 +00:00
parent 039613a8b3
commit 0578706bdf
4 changed files with 261 additions and 1 deletions
+5
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