From a54de518aca1dff3d368b8e72cff6891e988a5d8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Y=C3=BBki=20Vachot?= Date: Mon, 18 Oct 2021 07:46:53 +0200 Subject: [PATCH] Update --- app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app.py b/app.py index 7ea462c..1d6a9d3 100644 --- a/app.py +++ b/app.py @@ -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)