Skip to content

Commit

Permalink
gRPC update to README.md
Browse files Browse the repository at this point in the history
Add helper functions to prevent users facing the issue of not being able to utilise all generators.
  • Loading branch information
PhillOliver-Dev authored Jul 8, 2019
1 parent b012bbc commit e3ca067
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,12 @@ This is what `GoKit Cli` is aiming to change.
GoKit Cli needs to be installed using `go get` and `go install` so `Go` is a requirement to be able to test your services
[gokit](https://github.com/go-kit/kit) is needed.

To utilise generation of gRPC service code through `kit generate service <SERVICE_NAME> -t grpc` you will need to install the grpc prequisites.
```
go get -u google.golang.org/grpc
go get -u github.com/golang/protobuf/protoc-gen-go
```

# Table of Content
- [Installation](#installation)
- [Usage](#usage)
Expand Down Expand Up @@ -122,4 +128,4 @@ docker-compose up
```

After you run `docker-compose up` your services will start up and any change you make to your code will automatically
rebuild and restart your service (only the service that is changed)
rebuild and restart your service (only the service that is changed)

0 comments on commit e3ca067

Please sign in to comment.