Web3CV/deploy.sh

11 lines
230 B
Bash
Executable File

#!/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!"