From a755ecdec9d1a2c4072c010525d2a95b0f13f5f0 Mon Sep 17 00:00:00 2001 From: David Heinemeier Hansson Date: Tue, 16 Dec 2025 14:36:49 -0800 Subject: [PATCH] Must be run as sudo --- bin/dev | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/dev b/bin/dev index 21ef0eeeb..8c03122d0 100755 --- a/bin/dev +++ b/bin/dev @@ -35,7 +35,7 @@ if [ "$USE_TAILSCALE" = "1" ]; then stop_tailscale() { tailscale serve --https=$TS_PORT off >/dev/null 2>&1; } trap stop_tailscale EXIT INT TERM - tailscale serve --bg --https=$TS_PORT "http://fizzy.localhost:$PORT" >/dev/null 2>&1 + sudo tailscale serve --bg --https=$TS_PORT "http://fizzy.localhost:$PORT" >/dev/null 2>&1 echo "Login with david@example.com to: https://$TS_HOSTNAME:$TS_PORT/" else echo "Login with david@example.com to: http://fizzy.localhost:$PORT/"