Files
Aether/backend/app/main.py
T
lorsan d438f7bf5b Init poetry and create base structure
Init poetry and create base structure
2025-12-14 13:04:58 +03:00

14 lines
247 B
Python

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)