khatru-pyramid/justfile

14 lines
391 B
Makefile
Raw Normal View History

2023-10-28 20:21:15 -03:00
dev:
2025-01-14 13:05:45 -03:00
fd 'go|templ' | entr -r bash -c 'just templ && godotenv go run .'
2023-11-02 21:15:16 -03:00
2025-01-14 13:05:45 -03:00
build: templ
2024-07-12 13:48:48 -03:00
CC=musl-gcc go build -ldflags='-linkmode external -extldflags "-static"' -o ./khatru-pyramid
2025-01-14 13:05:45 -03:00
templ:
templ generate
2024-08-20 15:47:29 -03:00
deploy target: build
ssh root@{{target}} 'systemctl stop pyramid';
scp khatru-pyramid {{target}}:pyramid/khatru-invite
ssh root@{{target}} 'systemctl start pyramid'