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)