#!/bin/bash set -e echo "Pulling latest..." git pull echo "Building..." npm run build echo "Restarting service..." sudo systemctl restart aaronai-web echo "Done."