forked from apache/pulsar-site
-
Notifications
You must be signed in to change notification settings - Fork 0
/
sidebarsDevelopment.js
77 lines (76 loc) · 1.94 KB
/
sidebarsDevelopment.js
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
/** @type {import('@docusaurus/plugin-content-docs').SidebarsConfig} */
const sidebars = {
sidebarDevelopment: [
'about',
{
type: "category",
label: "Getting started",
items: [
'setup-building',
'setup-ide',
'setup-git',
'setup-debugging'
]
},
{
type: "category",
label: "Development",
items: [
'develop-coding-conventions',
'develop-triage',
'develop-labels',
'develop-semantic-title'
]
},
{
type: "category",
label: "Testing and CI",
items: [
'testing-licenses',
'personal-ci',
]
},
{
type: "category",
label: "Website",
items: [
'site-intro',
'document-preview',
'document-syntax',
]
},
{
type: "category",
label: "Documentation",
items: [
'document-intro',
'document-contribution',
]
},
{
type: "category",
label: "Releases",
items: [
'release-policy',
{
type: "category",
label: 'Release process',
link: {type: 'doc', id: 'release-process'},
items: [
'create-gpg-keys',
'release-note-guide',
]
},
'validate-release-candidate',
]
},
{
type: "category",
label: "Committers",
items: [
'become-core-developer',
]
}
],
};
module.exports = sidebars;