From bf8914856ebd6218119463745db42651cf6980c4 Mon Sep 17 00:00:00 2001 From: pys306 Date: Sun, 26 Apr 2026 02:29:42 +0900 Subject: [PATCH] Update Streamlit address to 192.168.50.101 for external access --- launch.pyw | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/launch.pyw b/launch.pyw index 808316e..64f7ec2 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", "localhost", "--server.headless", "true"] + 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"] proc = subprocess.Popen(cmd) atexit.register(proc.kill)