This commit is contained in:
Yûki VACHOT 2021-10-18 07:46:53 +02:00
parent de6c910cc1
commit a54de518ac

2
app.py
View file

@ -7,5 +7,5 @@ def hello_world(): # put application's code here
return 'Hello World!'
if __name__ == '__main__':
port = int(os.environ.get('PORT', 5000))
port = int(os.environ.get('PORT', 33507))
app.run(host='0.0.0.0', port=port, debug=True)