changed ports again

This commit is contained in:
RubenRWU
2026-03-25 13:49:30 +01:00
parent 1d5d7d6e81
commit b4e78206ed
3 changed files with 7 additions and 3 deletions

View File

@@ -591,4 +591,5 @@ async def send(
if __name__ == "__main__":
import uvicorn
uvicorn.run(app, host="0.0.0.0", port=8000)
port = int(os.getenv("PORT", "8276"))
uvicorn.run(app, host="0.0.0.0", port=port)