implement class logo
All checks were successful
Build and Publish / check-chart (push) Successful in 20s
Build and Publish / helm-release (push) Has been skipped
Build and Publish / release (push) Successful in 4m55s

This commit is contained in:
2025-07-08 16:28:53 -04:00
parent bfcebb63c5
commit 1e8d3abf8a
14 changed files with 1715 additions and 22 deletions

View File

@@ -4,7 +4,7 @@ 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)
PROTO_FILES := $(shell find proto -name '*.proto' -not -path 'proto/google/*')
PLATFORMS := linux/amd64 linux/arm64 darwin/amd64 darwin/arm64
OUTPUT_DIR := bin
VER_PKG := gitea.libretechconsulting.com/rmcguire/go-app/pkg/config.Version
@@ -20,7 +20,7 @@ proto: check_protoc $(API_DIR)
--openapiv2_out=$(SCHEMA_DIR) \
--openapiv2_opt allow_merge=true \
--openapiv2_opt merge_file_name=$(CMD_NAME) \
$(foreach dir, $(PROTO_DIRS), $(wildcard $(dir)/*.proto))
$(PROTO_FILES)
test:
go test -v ./...