openweb / pinchtab /scripts /build.sh
Leon4gr45's picture
Upload folder using huggingface_hub (part 3)
c52954a verified
Raw
History Blame Contribute Delete
261 Bytes
#!/bin/bash
# Build Pinchtab and the embedded dashboard without starting the server.
set -euo pipefail
cd "$(dirname "$0")/.."
./scripts/build-dashboard.sh
echo "🔨 Building Go..."
go build -o pinchtab ./cmd/pinchtab
echo "✅ Build complete: ./pinchtab"