fix: Use port 5000 to follow convention
Some checks failed
Build Docker / BuildImage (push) Failing after 1m47s

This commit is contained in:
2026-04-04 11:37:44 +11:00
parent d66fd8f58e
commit f680eb9492
3 changed files with 10 additions and 2 deletions

View File

@@ -5,4 +5,4 @@ app = create_app()
if __name__ == "__main__":
app.run(host="0.0.0.0", port=8000, debug=False)
app.run(host="0.0.0.0", port=5000, debug=False)