Compare commits

..

No commits in common. "0b1826951e1ca06c36213866bef9185eac40f967" and "2de398032c827458fdf47e72ceb5e61728ca3ae8" have entirely different histories.

3 changed files with 1 additions and 5 deletions

View File

@ -3,7 +3,6 @@
CMD_NAME := go-server-with-otel
VERSION ?= development
API_DIR := api/
SCHEMA_DIR := contrib/
PROTO_DIRS := $(wildcard proto/demo/app/*) # TODO: Update path (probably not demo)
PLATFORMS := linux/amd64 linux/arm64 darwin/amd64 darwin/arm64
OUTPUT_DIR := bin
@ -17,9 +16,7 @@ proto: check_protoc $(API_DIR)
--go_out=$(API_DIR) --go_opt=paths=source_relative \
--go-grpc_out=$(API_DIR) --go-grpc_opt=paths=source_relative \
--grpc-gateway_out=$(API_DIR) --grpc-gateway_opt=paths=source_relative \
--openapiv2_out=$(SCHEMA_DIR) \
--openapiv2_opt allow_merge=true \
--openapiv2_opt merge_file_name=$(CMD_NAME) \
--openapiv2_out=$(API_DIR) \
$(foreach dir, $(PROTO_DIRS), $(wildcard $(dir)/*.proto))
test:

View File

@ -1,7 +1,6 @@
# Demo app TODO
- [ ] Update README for tagging/versioning/pipeline info
- [ ] Update README for detail on installing protoc tools and make
- [ ] Add helm external secrets support
- [x] Rename project
- [x] Finish grpc sample implementation