From 3fb5f1d961016cc1ed29d727aa3fe753ad55bdad Mon Sep 17 00:00:00 2001 From: amnaw <48104560+amnaw@users.noreply.github.com> Date: Fri, 6 Jan 2023 02:26:02 +0300 Subject: [PATCH] Update app.py --- app.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/app.py b/app.py index 9ab1ed730..6d1c3b2cf 100644 --- a/app.py +++ b/app.py @@ -26,4 +26,7 @@ def hello(): if __name__ == '__main__': - app.run() \ No newline at end of file + # comment line below when deploying to VMSS + # app.run() # local + # uncomment the line below before deployment to VMSS + app.run(host='0.0.0.0', threaded=True, debug=True) # remote