# README
Protocol Buffer Storage
#Quick start https://grpc.io/docs/quickstart/go/
INSTALL THE PROTO BUFFER CODE GENERATOR (PROTOC)
- Install the PROTOC https://github.com/protocolbuffers/protobuf/releases/tag/v3.11.4
Install the protoc dependencies
-
Install the GO Plugin, this will be installed in $GOPATH Directory with a file protoc-gen-go go install google.golang.org/protobuf/cmd/protoc-gen-go
-
Add the executable protoc-gen-go to your $PATH so that protoc see can see it export PATH="$PATH:$(go env GOPATH)/bin"
INSTALL GOLANG DEPENDENCIES
- go get -u google.golang.org/grpc
- go get -u github.com/golang/protobuf/protoc-gen-go
#Visual Code Plugin for protocol buffer syntax highlight https://marketplace.visualstudio.com/items?itemName=zxh404.vscode-proto3
Note: Git tagging with version steps
- git add .
- git commit -m "message"
- git tag -a [version] -m "[version tagg message]"
- git push --tags