Add deploy.sh: build + rsync to VPS

This commit is contained in:
Davide Scaini
2026-05-13 22:50:44 +02:00
parent 0c39bb26c8
commit 6df62ebce5
Executable
+7
View File
@@ -0,0 +1,7 @@
#!/usr/bin/env bash
set -e
VPS=root@95.216.55.151
npm run build
rsync -az --delete dist/ "$VPS:/var/www/planner/"
echo "Deployed to planner.bincio.org"