forked from grpc/grpc.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.toml
210 lines (170 loc) · 4.28 KB
/
config.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
baseURL = "https://grpc.io/"
languageCode = "en-us"
title = "gRPC"
pygmentsCodeFences = true
disableKinds = ["taxonomy", "taxonomyTerm"]
[markup.goldmark.renderer]
unsafe = true
[markup.highlight]
style = "manni"
[params]
locale = "en_US"
grpc_release_tag = "v1.28.1"
grpc_release_tag_no_v = "1.28.1"
grpc_java_release_tag = "v1.28.1"
google_analytics_id = "UA-60127042-1"
font_awesome_version = "5.12.1"
milestones_link = "https://github.com/grpc/grpc/milestones"
description = "A high-performance, open source universal RPC framework"
why = """
gRPC is a modern open source high performance RPC framework that can run in any environment. It can efficiently connect services in and across data centers with pluggable support for load balancing, tracing, health checking and authentication. It is also applicable in last mile of distributed computing to connect devices, mobile applications and browsers to backend services.
"""
[params.social]
twitter = "https://twitter.com/grpcio"
gitter = "https://gitter.im/grpc/grpc"
reddit = "https://www.reddit.com/r/grpc"
twitter_handle = "@grpcio"
[[params.features]]
title = "Simple service definition"
description = "Define your service using Protocol Buffers, a powerful binary serialization toolset and language"
icon = "feature-1.svg"
[[params.features]]
title = "Start quickly and scale"
description = "Install runtime and dev environments with a single line and also scale to millions of RPCs per second with the framework"
icon = "feature-2.svg"
[[params.features]]
title = "Works across languages and platforms"
description = "Automatically generate idiomatic client and server stubs for your service in a variety of languages and platforms"
icon = "feature-3.svg"
[[params.features]]
title = "Bi-directional streaming and integrated auth"
description = "Bi-directional streaming and fully integrated pluggable authentication with HTTP/2-based transport"
icon = "feature-4.svg"
[params.logos]
navbar = "grpc-horizontal-white.png"
hero = "grpc-logo.png"
footer = "grpc-horizontal-white.png"
# Configuration required for auto-generating the Netlify _redirects file
[mediaTypes."text/netlify"]
delimiter = ""
[outputFormats.REDIRECTS]
mediaType = "text/netlify"
baseName = "_redirects"
[outputFormats.RSS]
baseName = "feed"
[outputFormats.RELEASE]
baseName = "release"
[outputs]
home = ["HTML", "REDIRECTS", "RSS", "RELEASE"]
[[params.fonts]]
name = "Open Sans"
sizes = [300, 400, 600, 700]
type = "sans_serif"
# Site menus
[[menu.main]]
name = "About"
url = "/about"
weight = 1
[[menu.main]]
name = "Docs"
url = "/docs"
identifier = "docs"
weight = 2
[[menu.main]]
name = "Guides"
url = "/docs/guides"
identifier = "guides"
weight = 3
[[menu.main]]
name = "Blog"
url = "/blog"
weight = 4
[[menu.main]]
name = "Community"
url = "/community"
weight = 5
[[menu.main]]
name = "Packages"
url = "https://packages.grpc.io"
weight = 6
[[menu.main]]
name = "Overview"
url = "/docs"
weight = 1
parent = "docs"
[[menu.main]]
name = "Quick Start"
url = "/docs/quickstart/"
weight = 2
parent = "docs"
[[menu.main]]
name = "Tutorials"
url = "/docs/tutorials/"
weight = 3
parent = "docs"
[[menu.main]]
name = "Reference"
url = "/docs/reference/"
weight = 4
parent = "docs"
[[menu.main]]
name = "Samples"
url = "/docs/samples/"
weight = 5
parent = "docs"
[[menu.main]]
name = "Presentations"
url = "/docs/talks/"
weight = 6
parent = "docs"
[[menu.main]]
name = "FAQ"
url = "/faq"
weight = 7
parent = "docs"
[[menu.main]]
name = "What is gRPC?"
url = "/docs/guides/"
weight = 1
parent = "guides"
[[menu.main]]
name = "gRPC Concepts"
url = "/docs/guides/concepts/"
weight = 2
parent = "guides"
[[menu.main]]
name = "Authentication"
url = "/docs/guides/auth/"
weight = 3
parent = "guides"
[[menu.main]]
name = "Error handling and debugging"
url = "/docs/guides/error/"
weight = 4
parent = "guides"
[[menu.main]]
name = "Benchmarking"
url = "/docs/guides/benchmarking/"
weight = 5
parent = "guides"
[[menu.main]]
name = "gRPC Wire Format"
url = "https://github.com/grpc/grpc/blob/master/doc/PROTOCOL-HTTP2.md"
weight = 6
parent = "guides"
[[menu.buttons]]
name = "Quick Start"
url = "/docs/quickstart"
weight = 1
[[menu.buttons]]
name = "Docs"
url = "/docs"
weight = 2
[[menu.buttons]]
name = "Concepts"
url = "/docs/guides/concepts"
weight = 3
[[menu.buttons]]
name = "Community"
url = "/community"
weight = 4