navi/deploy.sh
Ubuntu ecdfedb98d chore: add deploy.sh for build+rsync
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-04-20 04:47:55 +00:00

6 lines
155 B
Bash
Executable file

#!/usr/bin/env bash
set -euo pipefail
cd "$(dirname "$0")"
npm run build
rsync -av --delete dist/ /mnt/nav/frontend/
echo "Deployed to /mnt/nav/frontend/"