chore: añadir script build_dashboard.sh

Script para compilar el binario del dashboard TUI de forma independiente.
Útil para desarrollo rápido del dashboard sin recompilar todo el launcher.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-03-07 02:21:32 +00:00
parent e5270d1c46
commit b506090bfd
+8
View File
@@ -0,0 +1,8 @@
#!/usr/bin/env bash
set -euo pipefail
cd "$(dirname "$0")/../.."
echo "Building dashboard..."
/usr/local/go/bin/go build -tags goolm -o bin/dashboard ./cmd/dashboard/
echo "Done → bin/dashboard"