Add deploy.sh

This commit is contained in:
nak 2026-03-18 06:40:09 +00:00
parent 78a790400d
commit af9d0455f9

13
deploy.sh Executable file
View file

@ -0,0 +1,13 @@
#!/bin/sh
set -e
echo "Pulling latest..."
git pull
echo "Building..."
go build -o overte-api .
echo "Restarting service..."
sudo systemctl restart overte-api
echo "Done."