From 2a0d31cec0a1470b0effa07965cdc5f54270b367 Mon Sep 17 00:00:00 2001 From: Anton Ovchinnikov Date: Wed, 11 Jun 2025 23:57:50 +0200 Subject: [PATCH] chore: Helper make target to install protobuf/grpc plugins --- Makefile | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Makefile b/Makefile index 8bcf3f5c..03911945 100644 --- a/Makefile +++ b/Makefile @@ -92,3 +92,9 @@ vet: .PHONY: docs-image-push docs-image: docker buildx build --push --platform linux/amd64,linux/arm64 -t "$(DOCS_IMAGE)" ./docs + +.PHONY: install-dev +install-dev: + go install google.golang.org/protobuf/cmd/protoc-gen-go@v1.34.2 + go install google.golang.org/grpc/cmd/protoc-gen-go-grpc@v1.5.1 +# TODO: install a pinned protoc version