From e3083304d091fa522b66f102db1869e0f4b59c28 Mon Sep 17 00:00:00 2001 From: Jon Staab Date: Wed, 3 Jun 2026 17:07:53 -0700 Subject: [PATCH] Disable logging when serving frontend --- entrypoint.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/entrypoint.sh b/entrypoint.sh index cb6819f..3aac50a 100755 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -26,7 +26,7 @@ done < <(find /app/dist -type f \( -name '*.js' -o -name '*.html' \) -print0) echo "Starting backend (:2892) and frontend (:3000)..." /app/backend & backend_pid=$! -serve -s /app/dist -l 3000 & +serve -L -s /app/dist -l 3000 & serve_pid=$! trap 'kill -TERM "$backend_pid" "$serve_pid" 2>/dev/null || true' TERM INT