Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/martishin/golang-protobuf-example
Golang Protocol Buffers usage example
https://github.com/martishin/golang-protobuf-example
dockerfile go golang golang-examples protobuf protocol-buffers
Last synced: about 2 months ago
JSON representation
Golang Protocol Buffers usage example
- Host: GitHub
- URL: https://github.com/martishin/golang-protobuf-example
- Owner: martishin
- Created: 2023-12-02T02:38:55.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2023-12-04T02:55:37.000Z (about 1 year ago)
- Last Synced: 2024-10-12T15:20:56.473Z (3 months ago)
- Topics: dockerfile, go, golang, golang-examples, protobuf, protocol-buffers
- Language: Go
- Homepage:
- Size: 20.5 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Go Protocol Buffers Example
Protocol Buffers usage example in Go## Running Locally
* Build the protocol buffer definition: `protoc --go_out=. *.proto`
* Run the application: `go run main.go`
* Run tests: `go test ./...`
* Alternatively, run the app using Docker: `make build && make run`## Technologies Used
* [Go](https://go.dev/)
* [protobuf](https://pkg.go.dev/google.golang.org/protobuf)
* [Protocol Buffer](https://protobuf.dev/getting-started/gotutorial/)
* [Docker](https://www.docker.com/)