8 lines
290 B
Makefile
8 lines
290 B
Makefile
.PHONY: nft.nulo.in
|
|
nft.nulo.in:
|
|
CGO_ENABLED=0 GOOS=linux go build -a -ldflags '-extldflags "-static"' .
|
|
|
|
upload: nft.nulo.in
|
|
ssh -p993 root@nulo.in sv stop nftmashin
|
|
scp -r -P993 nft.nulo.in templates assets nftmashin@nulo.in:/home/nftmashin/
|
|
ssh -p993 root@nulo.in sv start nftmashin
|