HxHippy

Deployment Script

Automated Git pull, build, and service restart.

Last updated: 2024-12-15

Deploy Script

#!/bin/bash
cd /var/www/app
git pull origin main
npm ci && npm run build
sudo systemctl restart app
intermediate Development Updated 2024-12-15
  • deploy
  • git
  • build
  • restart
  • automation