Change server port to 80 for production deployment

This commit is contained in:
ske087
2025-08-19 11:34:56 +03:00
parent 65c1f75bb9
commit 104858847b

View File

@@ -554,4 +554,4 @@ def init_db():
if __name__ == '__main__': if __name__ == '__main__':
init_db() init_db()
app.run(host='0.0.0.0', port=5000, debug=True) app.run(host='0.0.0.0', port=80, debug=True)