go-http-peering/Makefile

35 lines
796 B
Makefile
Raw Normal View History

2019-02-03 20:56:58 +01:00
test:
go clean -testcache
go test -cover -v ./...
watch:
modd
2019-04-09 11:20:47 +02:00
release:
script/release
2019-02-03 20:56:58 +01:00
deps:
GO111MODULE=off go get -u golang.org/x/tools/cmd/godoc
GO111MODULE=off go get -u github.com/cortesi/modd/cmd/modd
GO111MODULE=off go get -u github.com/golangci/golangci-lint/cmd/golangci-lint
GO111MODULE=off go get -u github.com/lmika/goseq
tidy:
go mod tidy
lint:
golangci-lint run --tests=false --enable-all
sequence-diagram: sd-advertise sd-update sd-ping
sd-%:
goseq doc/sequence-diagram/$*.seq > doc/sequence-diagram/$*.svg
doc:
@echo "open your browser to http://localhost:6060/pkg/forge.cadoles.com/Cadoles/go-http-peering to see the documentation"
2019-02-03 20:56:58 +01:00
godoc -http=:6060
2019-02-22 17:35:49 +01:00
bin/keygen:
go build -o bin/keygen ./cmd/keygen
2019-02-03 20:56:58 +01:00
2019-04-09 11:20:47 +02:00
.PHONY: test lint doc sequence-diagram bin/keygen release