khatru-pyramid/justfile

11 lines
319 B
Makefile
Raw Normal View History

2023-10-28 20:21:15 -03:00
dev:
2024-02-01 13:10:44 -03:00
ag -l --go | entr -r godotenv go run .
2023-11-02 21:15:16 -03:00
build:
2023-12-09 00:11:29 -03:00
CC=musl-gcc go build -ldflags='-linkmode external -extldflags "-static"' -o ./khatru-invite
deploy: build
2024-07-08 09:09:17 -03:00
ssh root@cantillon 'systemctl stop pyramid';
scp khatru-invite cantillon:pyramid/khatru-invite
ssh root@cantillon 'systemctl start pyramid'