[WIP] Moving test services to this repo

This commit is contained in:
Janos Dobronszki
2020-10-02 15:03:48 +02:00
parent 61fe9c169b
commit 5c6ba0dbcd
49 changed files with 10400 additions and 0 deletions

17
idiomatic/Makefile Normal file
View File

@@ -0,0 +1,17 @@
GOPATH:=$(shell go env GOPATH)
.PHONY: proto
proto:
protoc --proto_path=. --micro_out=. --go_out=:. proto/idiomatic.proto
.PHONY: build
build:
go build -o idiomatic *.go
.PHONY: test
test:
go test -v ./... -cover
.PHONY: docker
docker:
docker build . -t idiomatic:latest