#!/bin/bash # Build the site echo "Building the site..." npx parcel build index.html # Deploy to VPS echo "Deploying to VPS..." rsync -avz --delete dist/ root@boilerhaus.org:/var/www/boilerhaus.org/ echo "Deployment complete!"