-
Notifications
You must be signed in to change notification settings - Fork 5
/
sidebarsCommunity.js
80 lines (78 loc) · 1.92 KB
/
sidebarsCommunity.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
78
79
80
// @ts-check
/** @type {import('@docusaurus/plugin-content-docs').SidebarsConfig} */
const sidebars = {
community: [
'index',
'mission-statement',
'license-considerations',
{
type: 'category',
link: {
type: 'doc',
id: 'collaboration/index'
},
label: 'Collaboration',
items: [
'collaboration/team-iaas',
'collaboration/team-iam',
'collaboration/team-container',
'collaboration/team-ops',
'collaboration/sig-central-api',
'collaboration/sig-community',
'collaboration/sig-documentation',
'collaboration/sig-monitoring',
'collaboration/sig-standardization'
]
},
{
type: 'category',
label: 'Tools',
link: {
type: 'generated-index'
},
items: [
'tools/jitsi',
'tools/matrix',
'tools/mailinglists',
'tools/nextcloud',
'tools/zuul',
,
{
type: 'category',
label: 'GitHub',
items: [
'tools/github/branchprotection',
'tools/github/dco-and-licenses',
'tools/github/tips-and-tricks'
]
},
{
type: 'category',
label: 'Cloud Resources',
items: [
'cloud-resources/cloud-resources',
'cloud-resources/getting-started-openstack',
'cloud-resources/plusserver-gx-scs',
'cloud-resources/wavestack'
]
}
]
},
{
type: 'category',
label: 'Contribute to Docs',
link: {
type: 'generated-index'
},
items: [
'contribute/adding-docs-guide',
'contribute/doc-files-structure-guide',
'contribute/docs-workflow-explanation',
'contribute/linting-guide',
'contribute/local-docusaurus-development-guide',
'contribute/styleguide'
]
}
]
}
module.exports = sidebars