This repository has been archived on 2024-08-02. You can view files and clone it, but cannot push or open issues or pull requests.
2018-09-17 14:17:54 +02:00
|
|
|
export GO111MODULE := on
|
|
|
|
|
|
|
|
build: bin/server
|
|
|
|
|
2018-09-18 18:07:40 +02:00
|
|
|
bin/server:
|
|
|
|
CGO_ENABLED=0 go build -mod=vendor -v -o ./bin/server ./cmd/server
|
2018-09-17 14:17:54 +02:00
|
|
|
|
|
|
|
watch:
|
|
|
|
modd
|
|
|
|
|
2018-09-18 18:07:40 +02:00
|
|
|
test: tidy
|
|
|
|
GO111MODULE=off go clean -testcache
|
|
|
|
go test -mod=vendor -v ./...
|
2018-09-17 14:17:54 +02:00
|
|
|
|
|
|
|
lint:
|
|
|
|
PATH=$(PATH):./bin/gometalinter gometalinter -e '.*/pkg/mod' --vendor ./...
|
|
|
|
|
2018-09-18 18:07:40 +02:00
|
|
|
tidy:
|
2018-09-17 14:17:54 +02:00
|
|
|
go mod tidy
|
|
|
|
|
2018-09-18 18:07:40 +02:00
|
|
|
vendor: tidy
|
|
|
|
go mod vendor
|
|
|
|
|
2018-09-17 14:17:54 +02:00
|
|
|
install-devtools: vendor
|
|
|
|
# Install modd
|
|
|
|
GO111MODULE=off go get -u github.com/cortesi/modd/cmd/modd
|
|
|
|
# Install Gometalinter
|
|
|
|
bash misc/gometalinter/install.sh -b ./bin/gometalinter
|
|
|
|
|
|
|
|
clean:
|
|
|
|
rm -rf ./bin
|
|
|
|
go clean -i -x -r -modcache
|
|
|
|
|
2018-09-18 18:07:40 +02:00
|
|
|
.PHONY: test clean generate vendor install-devtools lint watch tidy
|