khatru-pyramid/justfile
2025-01-14 13:05:45 -03:00

14 lines
391 B
Makefile

dev:
fd 'go|templ' | entr -r bash -c 'just templ && godotenv go run .'
build: templ
CC=musl-gcc go build -ldflags='-linkmode external -extldflags "-static"' -o ./khatru-pyramid
templ:
templ generate
deploy target: build
ssh root@{{target}} 'systemctl stop pyramid';
scp khatru-pyramid {{target}}:pyramid/khatru-invite
ssh root@{{target}} 'systemctl start pyramid'