From 50a7544a55951f577dee343f030d139618a00525 Mon Sep 17 00:00:00 2001 From: pys306 Date: Mon, 27 Apr 2026 22:31:07 +0900 Subject: [PATCH] Update server address to 0.0.0.0 --- launch.pyw | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/launch.pyw b/launch.pyw index 64f7ec2..1abb439 100644 --- a/launch.pyw +++ b/launch.pyw @@ -18,7 +18,7 @@ def get_screen_width(): def start_streamlit(port): global proc - cmd = [sys.executable, "-m", "streamlit", "run", os.path.join(frontends_dir, "stapp.py"), "--server.port", str(port), "--server.address", "192.168.50.101", "--server.headless", "true"] + cmd = [sys.executable, "-m", "streamlit", "run", os.path.join(frontends_dir, "stapp.py"), "--server.port", str(port), "--server.address", "0.0.0.0", "--server.headless", "true"] proc = subprocess.Popen(cmd) atexit.register(proc.kill)