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-20 17:52:50 +02:00
|
|
|
LINT_ARGS ?= ./...
|
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:
|
2018-09-26 16:02:43 +02:00
|
|
|
@GO111MODULE=off golangci-lint run -e '.*/pkg/mod' -e ".*/go/src" --enable-all --disable lll $(LINT_ARGS)
|
2018-09-17 14:17:54 +02:00
|
|
|
|
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
|
2018-09-20 17:52:50 +02:00
|
|
|
# Install golangci-lint
|
|
|
|
GO111MODULE=off go get -u github.com/golangci/golangci-lint/cmd/golangci-lint
|
2018-09-17 14:17:54 +02:00
|
|
|
|
|
|
|
clean:
|
|
|
|
rm -rf ./bin
|
|
|
|
go clean -i -x -r -modcache
|
|
|
|
|
2018-09-19 17:23:28 +02:00
|
|
|
doc:
|
|
|
|
@echo "Open your browser to http://localhost:6060/pkg/forge.cadoles.com/Pyxis/orion/ to see the documentation"
|
|
|
|
@godoc -http=:6060
|
|
|
|
|
2018-09-24 08:49:59 +02:00
|
|
|
.PHONY: test clean generate vendor install-devtools lint watch tidy doc bin/server
|