18 lines
529 B
TOML
18 lines
529 B
TOML
[grpc]
|
|
# Enable defines if the gRPC server should be enabled.
|
|
enable = false
|
|
# Address defines the gRPC server address to bind to.
|
|
address = 'localhost:9090'
|
|
# MaxRecvMsgSize defines the max message size in bytes the server can receive.
|
|
# The default value is 10MB.
|
|
max-recv-msg-size = 10485760
|
|
# MaxSendMsgSize defines the max message size in bytes the server can send.
|
|
# The default value is math.MaxInt32.
|
|
max-send-msg-size = 2147483647
|
|
|
|
[mock-server-1]
|
|
# Mock field
|
|
mock_field = 'default'
|
|
# Mock field two
|
|
mock_field_two = 1
|