Init poetry and create base structure

Init poetry and create base structure
This commit is contained in:
2025-12-14 13:00:24 +03:00
parent 4a42981024
commit d438f7bf5b
6 changed files with 1765 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
import uvicorn
from fastapi import FastAPI
app = FastAPI()
@app.get("/health")
async def test_health():
return {"status": "ok"}
if __name__ == "__main__":
uvicorn.run("app.main:app", host="0.0.0.0", port=8080, reload=True, workers=3)