Add deploy script

This commit is contained in:
2026-04-26 06:37:42 +00:00
parent e9531a0321
commit cd8377743d
Executable
+9
View File
@@ -0,0 +1,9 @@
#!/bin/bash
set -e
echo "Pulling latest..."
git pull
echo "Building..."
npm run build
echo "Restarting service..."
sudo systemctl restart aaronai-web
echo "Done."