From b8f67ca46cdfedd2df58352240241402039f0134 Mon Sep 17 00:00:00 2001 From: Zeus Date: Sun, 22 Feb 2026 10:57:20 +0000 Subject: [PATCH] fix: bind datasette to 0.0.0.0 for remote access --- bin/argus | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/argus b/bin/argus index d5b33fd..ca8e90f 100755 --- a/bin/argus +++ b/bin/argus @@ -572,9 +572,9 @@ def cmd_serve(args) -> None: print(f" Datasette: http://localhost:{datasette_port}") print() - # Start datasette in background + # Start datasette in background (bind to all interfaces for remote access) datasette_proc = subprocess.Popen( - ["datasette", str(db_path), "-p", str(datasette_port), "--cors"], + ["datasette", str(db_path), "-h", "0.0.0.0", "-p", str(datasette_port), "--cors"], stdout=subprocess.DEVNULL, stderr=subprocess.DEVNULL )