create-schematic-gen-site/build-and-deploy.sh

11 lines
327 B
Bash
Raw Normal View History

2023-07-17 01:43:10 +00:00
#!/usr/bin/env bash
dub clean
dub build --build=release
echo "Stopping CSGS service."
ssh -f root@134.209.223.55 'systemctl stop csgs'
echo "Uploading new binary."
2023-07-17 01:43:10 +00:00
scp create-schematic-gen-site root@134.209.223.55:/opt/create-schematic-gen-site/
echo "Starting CSGS service."
ssh -f root@134.209.223.55 'systemctl start csgs'