mirror of
https://github.com/believethehype/nostdress.git
synced 2026-06-12 04:13:30 -07:00
8 lines
419 B
Makefile
8 lines
419 B
Makefile
satdress: $(shell find . -name "*.go") $(shell find . -name "*.html") $(shell find . -name "*.css") go.mod
|
|
CC=$$(which musl-gcc) go build -ldflags='-s -w -linkmode external -extldflags "-static"' -o ./satdress
|
|
|
|
deploy: satdress
|
|
ssh root@hulsmann 'systemctl stop bitmia tinytip payaddress paymentlink'
|
|
scp satdress hulsmann:satdress/satdress
|
|
ssh root@hulsmann 'systemctl start bitmia tinytip payaddress paymentlink'
|