From 8480c5ff8f6f49fe339e6b5d7c838c3b928ab448 Mon Sep 17 00:00:00 2001 From: walkingwormfood <36175269+walkingwormfood@users.noreply.github.com> Date: Wed, 23 Aug 2023 09:52:22 -0500 Subject: [PATCH] Renamed main.py to start.py --- main.py => start.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename main.py => start.py (99%) diff --git a/main.py b/start.py similarity index 99% rename from main.py rename to start.py index a4038db4b..92a1b41ce 100644 --- a/main.py +++ b/start.py @@ -179,7 +179,7 @@ if __name__ == "__main__": def startup_server(address, port): import webbrowser if os.name == 'nt' and address == '0.0.0.0': - address = '127.0.0.1' + address = '0.0.0.0' webbrowser.open(f"http://{address}:{port}") call_on_start = startup_server