From b5f159cc363c5019abceb398f2e886b1d7bac4c2 Mon Sep 17 00:00:00 2001 From: simonwoodworth Date: Fri, 15 Nov 2024 19:17:00 +0000 Subject: [PATCH] Force port to 80 --- app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app.py b/app.py index d9a6ac7..042655c 100644 --- a/app.py +++ b/app.py @@ -12,4 +12,4 @@ def hello_world(): # put application's code here return f'Hello World! The answer is: {powerString}' if __name__ == '__main__': - app.run() + app.run(host='0.0.0.0', port=80)