From 25e5636448c03e97aaad987d22e659b0d3d15ea9 Mon Sep 17 00:00:00 2001 From: Kacper Polczynski <polczynskikf@cardiff.ac.uk> Date: Thu, 9 Jan 2025 00:58:16 +0000 Subject: [PATCH] Update file app.py --- app.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app.py b/app.py index 0a22a82..f125b58 100644 --- a/app.py +++ b/app.py @@ -224,4 +224,5 @@ def logout(): if __name__ == '__main__': - app.run(debug=True) \ No newline at end of file + port = int(os.eniron.get('PORT', 8080)) + app.run(host='0.0.0.0', port=port ,debug=True) \ No newline at end of file -- GitLab