Use port 80

This commit is contained in:
Chris Diesch 2025-04-09 13:22:17 -06:00
parent 08f8b1a519
commit de71ce9fbf

2
run.py
View File

@ -3,4 +3,4 @@ from app import create_app
app = create_app()
if __name__ == '__main__':
app.run(port=8080, host='0.0.0.0')
app.run(port=80, host='0.0.0.0')