From bf9876a010eb5c4e07a96a2d7b3862a7c8685cf0 Mon Sep 17 00:00:00 2001 From: chabisik Date: Wed, 21 Dec 2022 23:35:44 +0100 Subject: [PATCH] Changing default port --- myapp.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/myapp.py b/myapp.py index 497e6e8..b9c5c06 100644 --- a/myapp.py +++ b/myapp.py @@ -116,4 +116,4 @@ if __name__=="__main__": remote_handler_thread.start() localtunnel_thread = threading.Thread(target=localtunnel_launcher) localtunnel_thread.start() - app.run(host="0.0.0.0") \ No newline at end of file + app.run(host="0.0.0.0", port=8000) \ No newline at end of file