khatru-pyramid/justfile
2024-07-08 09:09:17 -03:00

11 lines
319 B
Makefile

dev:
ag -l --go | entr -r godotenv go run .
build:
CC=musl-gcc go build -ldflags='-linkmode external -extldflags "-static"' -o ./khatru-invite
deploy: build
ssh root@cantillon 'systemctl stop pyramid';
scp khatru-invite cantillon:pyramid/khatru-invite
ssh root@cantillon 'systemctl start pyramid'