fix: first temperature post request

This commit is contained in:
2018-11-07 20:07:15 +01:00
parent f0ad798e99
commit 41a6d4e7ee
64 changed files with 9200 additions and 0 deletions

11
Makefile Normal file
View File

@ -0,0 +1,11 @@
VERSION ?= "$(shell git rev-parse --short HEAD)-git"
go-build-arm7:
GOOS=linux GOARCH=arm GOARM=7 go build -o flucky -ldflags "-X main.version=${VERSION}"
go-build-amd:
go build -o flucky -ldflags "-X main.version=${VERSION}"
pi-copy: go-build-arm7
scp flucky hades:/usr/local/bin
ssh hades 'chmod +x /usr/local/bin/flucky'