9 lines
192 B
Makefile
9 lines
192 B
Makefile
tag = latest
|
|
|
|
gen:
|
|
@oapi-codegen --config=config.yaml ./proto/tester/v1/openapi.yaml
|
|
dev: gen
|
|
@go run main.go
|
|
build: gen
|
|
@docker build . -t ms-tester:${tag}
|
|
@#docker push ms-tester:${tag}
|