diff --git a/app/main.py b/app/main.py index d879399..11d3161 100644 --- a/app/main.py +++ b/app/main.py @@ -33,14 +33,13 @@ app = FastAPI( app.include_router(api_router, prefix=settings.api_prefix) - @app.get("/health") async def health_check(): """Health check endpoint.""" return {"status": "healthy"} - if __name__ == "__main__": import uvicorn - uvicorn.run(app, host="0.0.0.0", port=8053) \ No newline at end of file + + uvicorn.run(app, host="0.0.0.0", port=settings.port)