Add makefile

This commit is contained in:
2026-04-10 11:03:23 +02:00
parent 2724e05e90
commit f29ca3aa5a

8
Makefile Normal file
View File

@@ -0,0 +1,8 @@
NAS := thebe
.PHONY: deploy
deploy:
GOOS=linux GOARCH=arm GOARM=7 go build -o datascape-arm .
scp datascape-arm $(NAS):~/.local/bin/datascape
ssh $(NAS) /share/homes/luxick/.local/bin/datascape-start.sh
rm datascape-arm