khatru-pyramid/justfile

11 lines
295 B
Makefile
Raw Normal View History

2023-10-28 20:21:15 -03:00
dev:
godotenv go run .
2023-11-02 21:15:16 -03:00
build:
CC=musl-gcc go build -ldflags='-s -w -linkmode external -extldflags "-static"' -o ./khatru-invite
deploy: build
ssh root@turgot 'systemctl stop pyramid';
scp khatru-invite turgot:pyramid/khatru-invite
ssh root@turgot 'systemctl start pyramid'