1
0
mirror of https://github.com/go-micro/go-micro.git synced 2025-10-30 23:27:41 +02:00

Update README.md

This commit is contained in:
Asim Aslam
2020-12-26 15:22:14 +00:00
committed by GitHub
parent 7ab46b0850
commit df2dab0169

View File

@@ -40,24 +40,3 @@ This is a repository for micro examples. Feel free to contribute.
- [tunnel](tunnel) - How to use connection tunneling with the tunnel package
- [waitgroup](waitgroup) - Demonstrates how to use a waitgroup with a service
- [wrapper](wrapper) - A simple example of using a log wrapper
## Community
Find contributions from the community via the [explorer](https://micro.mu/projects/)
## Install
Install [protoc](https://github.com/google/protobuf) for your environment. Then:
```shell
# install protoc-gen-go
go get github.com/golang/protobuf/{proto,protoc-gen-go}
# install protoc-gen-micro
go get github.com/micro/micro/v2/cmd/protoc-gen-micro@master
```
To recompile any proto after changes:
```shell
protoc --proto_path=$GOPATH/src:. --micro_out=. --go_out=. path/to/proto
```