overte-api/deploy.sh
2026-03-20 08:19:26 +00:00

13 lines
176 B
Bash
Executable file

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