change web port

This commit is contained in:
2026-04-04 15:51:01 +02:00
parent 84e5656ca0
commit 942170ef7f

View File

@@ -59,7 +59,7 @@ def index():
if __name__ == "__main__":
if APP_ENV == "dev":
app.run(debug=True, host="0.0.0.0", port=5000)
app.run(debug=True, host="0.0.0.0", port=5005)
else:
from waitress import serve
serve(app, host="0.0.0.0", port=5000)
serve(app, host="0.0.0.0", port=5005)