docs: update docs for gateway (#2236)

master
Kevin Wan 2 years ago committed by GitHub
parent d20d8324e7
commit a8305def3d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -31,8 +31,9 @@ Upstreams:
- localhost:2379
Key: hello.rpc
# protoset mode
ProtoSet: hello.pb
Mapping:
ProtoSets:
- hello.pb
Mappings:
- Method: get
Path: /pingHello/:ping
RpcPath: hello.Hello/Ping
@ -40,7 +41,7 @@ Upstreams:
Endpoints:
- localhost:8081
# reflection mode, no ProtoSet settings
Mapping:
Mappings:
- Method: post
Path: /pingWorld
RpcPath: world.World/Ping
@ -48,9 +49,15 @@ Upstreams:
## Generate ProtoSet files
- example command
- example command without external imports
```shell
protoc --descriptor_set_out=hello.pb hello.proto
```
- example command with external imports
```shell
protoc --include_imports --proto_path=. --descriptor_set_out=hello.pb hello.proto
```

Loading…
Cancel
Save