2015-12-30 16:19:09 -04:00
|
|
|
#!/bin/sh
|
|
|
|
|
2016-10-15 14:38:47 -07:00
|
|
|
# Generate the protos.
|
|
|
|
protoc -I/usr/local/include -I. \
|
|
|
|
-I$GOPATH/src \
|
|
|
|
-I$GOPATH/src/github.com/grpc-ecosystem/grpc-gateway/third_party/googleapis \
|
2017-03-27 11:01:02 -07:00
|
|
|
--go_out=plugins=grpc:. \
|
2016-10-15 14:38:47 -07:00
|
|
|
rpc.proto
|
|
|
|
|
|
|
|
|
|
|
|
|
2018-02-07 04:11:11 +01:00
|
|
|
# Generate the REST reverse proxy.
|
2016-10-15 14:38:47 -07:00
|
|
|
protoc -I/usr/local/include -I. \
|
|
|
|
-I$GOPATH/src \
|
|
|
|
-I$GOPATH/src/github.com/grpc-ecosystem/grpc-gateway/third_party/googleapis \
|
|
|
|
--grpc-gateway_out=logtostderr=true:. \
|
|
|
|
rpc.proto
|
|
|
|
|
|
|
|
# Finally, generate the swagger file which describes the REST API in detail.
|
|
|
|
protoc -I/usr/local/include -I. \
|
|
|
|
-I$GOPATH/src \
|
|
|
|
-I$GOPATH/src/github.com/grpc-ecosystem/grpc-gateway/third_party/googleapis \
|
|
|
|
--swagger_out=logtostderr=true:. \
|
|
|
|
rpc.proto
|