Alterações para rodar no server

This commit is contained in:
Ricardo 2026-09-14 02:26:09 -03:00
parent 2b6ffdf3a7
commit 47f9e6ed1e
2 changed files with 2 additions and 1 deletions

View file

@ -12,4 +12,4 @@ app = FastAPI(
app.include_router(api_router, prefix='/v1')
if __name__ == '__main__':
uvicorn.run(app, host='127.0.0.1', port=settings.port)
uvicorn.run(app, host=settings.host, port=settings.port)