LAUNCH_TUNNEL.sh (455B)
1 #!/usr/bin/env bash 2 set -euo pipefail 3 4 cd "$(dirname "$0")" 5 6 echo "[Bzl] Launcher (Cloudflare quick tunnel)" 7 command -v node >/dev/null 2>&1 || { echo "Missing node (Node.js 18+ required)"; exit 1; } 8 command -v cloudflared >/dev/null 2>&1 || { echo "Missing cloudflared (try: winget install Cloudflare.cloudflared)"; exit 1; } 9 10 echo "[Bzl] Starting (supervised) + cloudflared quick tunnel..." 11 node ./scripts/bzl-launch.js --supervised --cloudflared=quick