forked from brocaar/chirpstack-application-server
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Makefile
76 lines (62 loc) · 2.11 KB
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
.PHONY: build clean test package package-deb ui api statics requirements ui-requirements serve update-vendor
PKGS := $(shell go list ./... | grep -v /vendor |grep -v lora-app-server/api | grep -v /migrations | grep -v /static | grep -v /ui)
VERSION := $(shell git describe --always)
GOOS ?= linux
GOARCH ?= amd64
build:
@echo "Compiling source for $(GOOS) $(GOARCH)"
@mkdir -p build
@GOOS=$(GOOS) GOARCH=$(GOARCH) go build -ldflags "-X main.version=$(VERSION)" -o build/lora-app-server$(BINEXT) cmd/lora-app-server/main.go
clean:
@echo "Cleaning up workspace"
@rm -rf build
@rm -rf dist/tar/$(VERSION)
test: statics
@echo "Running tests"
@for pkg in $(PKGS) ; do \
golint $$pkg ; \
done
@go vet $(PKGS)
@go test -p 1 -v $(PKGS)
package: clean build
@echo "Creating package for $(GOOS) $(GOARCH)"
@mkdir -p dist/tar/$(VERSION)
@cp build/* dist/tar/$(VERSION)
@cd dist/tar/$(VERSION) && tar -pczf ../lora_app_server_$(VERSION)_$(GOOS)_$(GOARCH).tar.gz .
@rm -rf dist/tar/$(VERSION)
package-deb:
@cd packaging && TARGET=deb ./package.sh
ui:
@echo "Building ui"
@rm -f static/index.html
@rm -rf static/static
@rm -rf ui/build
@cd ui && npm run build
@mv ui/build/* static
@echo "Don't forget to run make statics to include the static files in the Go code!"
api:
@echo "Generating API code from .proto files"
@go generate api/api.go
statics:
@echo "Generating static files"
@go generate cmd/lora-app-server/main.go
# shortcuts for development
requirements:
@echo "Installing development tools"
@go get -u github.com/golang/lint/golint
@go get -u github.com/grpc-ecosystem/grpc-gateway/protoc-gen-grpc-gateway
@go get -u github.com/grpc-ecosystem/grpc-gateway/protoc-gen-swagger
@go get -u github.com/golang/protobuf/protoc-gen-go
@go get -u github.com/elazarl/go-bindata-assetfs/...
@go get -u github.com/jteeuwen/go-bindata/...
ui-requirements:
@echo "Installing UI requirements"
@cd ui && npm install
serve: build
@echo "Starting Lora App Server"
./build/lora-app-server
update-vendor:
@echo "Updating vendored packages"
@govendor update +external
run-compose-test:
docker-compose run --rm appserver make test