chore: add deploy.sh for build+rsync

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Ubuntu 2026-04-20 04:47:55 +00:00
commit ecdfedb98d

6
deploy.sh Executable file
View file

@ -0,0 +1,6 @@
#!/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/"