Change log level to debug and update port to 3000
All checks were successful
Test and build Docker image / docker (push) Successful in 1m55s

This commit is contained in:
2025-06-07 05:54:55 +02:00
parent b3197a77e3
commit 1d16e7e24e

View File

@ -1070,9 +1070,9 @@ if __name__ == "__main__":
uvicorn.run(
"main:app",
log_level="info",
log_level="debug",
host="0.0.0.0", # noqa: S104
port=5000,
port=3000,
proxy_headers=True,
forwarded_allow_ips="*",
)