mirror of
https://github.com/kataras/iris.git
synced 2025-01-23 18:51:03 +01:00
b6a36bf28d
Former-commit-id: c7a535bf860a67604de3d09ade30599611e096f1 |
||
---|---|---|
.. | ||
grpc-client | ||
helloworld | ||
http-client | ||
main_test.go | ||
main.go | ||
README.md | ||
server.crt | ||
server.key |
gRPC Iris Example
Generate TLS Keys
$ openssl genrsa -out server.key 2048
$ openssl req -new -x509 -sha256 -key server.key -out server.crt -days 3650
Install the protoc Go plugin
$ go get -u github.com/golang/protobuf/protoc-gen-go
Generate proto
$ protoc -I helloworld/ helloworld/helloworld.proto --go_out=plugins=grpc:helloworld