| 1234567891011121314151617181920212223242526 |
- #!/bin/sh
- # deploy: deploy application in digitalocean server
- cat script/misc/oteascii.txt
- set -e
- tput setaf 1; echo "Deploy started at…"
- date "+%H:%M:%S"
- tput setaf 3; echo "Pulling From Source…"
- git pull
- tput setaf 3; echo "Building binary…"
- go build
- tput setaf 3; echo "Restarting Gitote Service…"
- sudo systemctl restart gitote
- tput setaf 1; echo "Deploy ended at…"
- date "+%H:%M:%S"
- tput setaf 2; echo "==> App is successfully deployed"
- tput setaf 2; echo "==> https://gitote.in"
|