1
0
mirror of https://github.com/go-micro/go-micro.git synced 2025-02-04 18:21:53 +02:00

17 lines
289 B
Makefile
Raw Normal View History

2020-12-26 15:17:20 +00:00
GOPATH:=$(shell go env GOPATH)
.PHONY: proto test docker
proto:
protoc --proto_path=${GOPATH}/src:. --micro_out=. --go_out=. proto/example/example.proto
build: proto
go build -o template-api main.go
test:
go test -v ./... -cover
docker:
docker build . -t template-api:latest