From 27f25d9f4d940cce7ddcd46232bab8d08ac08e90 Mon Sep 17 00:00:00 2001 From: liuyuanchuang Date: Wed, 4 Feb 2026 12:06:17 +0800 Subject: [PATCH] feat: update port config --- app/main.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) 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)