khatru-pyramid/justfile
2024-07-12 13:48:48 -03:00

11 lines
320 B
Makefile

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