Files
hnsdoh-status/main.py
Nathan Woodburn f680eb9492
Some checks failed
Build Docker / BuildImage (push) Failing after 1m47s
fix: Use port 5000 to follow convention
2026-04-04 11:37:44 +11:00

9 lines
139 B
Python

from hnsdoh_status import create_app
app = create_app()
if __name__ == "__main__":
app.run(host="0.0.0.0", port=5000, debug=False)