mirror of
https://github.com/github-tijlxyz/khatru-pyramid.git
synced 2025-04-19 18:31:18 +00:00
11 lines
310 B
Makefile
11 lines
310 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@turgot 'systemctl stop pyramid';
|
|
scp khatru-invite turgot:pyramid/khatru-invite
|
|
ssh root@turgot 'systemctl start pyramid'
|