feat: update port config
This commit is contained in:
@@ -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)
|
||||
|
||||
uvicorn.run(app, host="0.0.0.0", port=settings.port)
|
||||
|
||||
Reference in New Issue
Block a user