-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.toml
92 lines (73 loc) · 1.56 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
baseURL = "https://grpc.io/"
languageCode = "en-us"
title = "HRPC"
pygmentsCodeFences = true
[params]
grpc_release_tag = "v1.25.0"
grpc_release_tag_no_v = "1.25.0"
grpc_java_release_tag = "v1.25.0"
milestones_link = "https://github.com/grpc/grpc/milestones"
# Configuration required for auto-generating the Netlify _redirects file
[mediaTypes."text/netlify"]
delimiter = ""
[outputFormats.REDIRECTS]
mediaType = "text/netlify"
baseName = "_redirects"
[outputFormats.RSS]
baseName = "feed"
[outputs]
home = ["HTML", "REDIRECTS", "RSS"]
# Site menus
[menu]
[[menu.dropdown]]
name = "Overview"
url = "/docs"
weight = 1
[[menu.dropdown]]
name = "Quick Start"
url = "/docs/quickstart/"
weight = 2
[[menu.dropdown]]
name = "Guides"
url = "/docs/guides/"
weight = 3
[[menu.dropdown]]
name = "Tutorials"
url = "/docs/tutorials/"
weight = 4
[[menu.dropdown]]
name = "Reference"
url = "/docs/reference/"
weight = 5
[[menu.dropdown]]
name = "Samples"
url = "/docs/samples/"
weight = 6
[[menu.dropdown]]
name = "Presentations"
url = "/docs/talks"
weight = 7
[[menu.guides]]
name = "What is HRPC?"
url = "/docs/guides/"
weight = 1
[[menu.guides]]
name = "HRPC Concepts"
url = "/docs/guides/concepts/"
weight = 2
[[menu.guides]]
name = "Authentication"
url = "/docs/guides/auth/"
weight = 3
[[menu.guides]]
name = "Error handling and debugging"
url = "/docs/guides/error/"
weight = 4
[[menu.guides]]
name = "Benchmarking"
url = "/docs/guides/benchmarking/"
weight = 5
[[menu.guides]]
name = "HRPC Wire Format"
url = "https://github.com/grpc/grpc/blob/master/doc/PROTOCOL-HTTP2.md"
weight = 6