diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..86e36a7 --- /dev/null +++ b/Makefile @@ -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