Update Flask app to run on port 5050

This commit is contained in:
Dominik Krenn 2025-06-11 07:47:32 +02:00
parent 6472a33b58
commit b8a504448a

2
app.py
View File

@ -7,4 +7,4 @@ def index():
return "Hello, World!"
if __name__ == '__main__':
app.run(debug=True, host='127.0.0.1', port=5000)
app.run(debug=True, host='127.0.0.1', port=5050)