Initial commit

This commit is contained in:
Dom
2026-03-05 01:20:15 +01:00
commit c0c50e56f0
364 changed files with 62207 additions and 0 deletions

12
omop/run_api.py Normal file
View File

@@ -0,0 +1,12 @@
#!/usr/bin/env python3
"""Run the FastAPI server."""
import uvicorn
if __name__ == "__main__":
uvicorn.run(
"src.api.main:app",
host="0.0.0.0",
port=8001,
reload=True,
log_level="info"
)