-
Notifications
You must be signed in to change notification settings - Fork 53
Expand file tree
/
Copy pathsidebarsCommunity.js
More file actions
46 lines (45 loc) · 929 Bytes
/
sidebarsCommunity.js
File metadata and controls
46 lines (45 loc) · 929 Bytes
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
/** @type {import('@docusaurus/plugin-content-docs').SidebarsConfig} */
const sidebars = {
community: [
'community',
'contributing',
{
"type": "category",
"label": "Internals",
collapsed: false,
link: {
type: 'generated-index',
},
items: [
'data-structure-on-rocksdb',
'kvrocks-search-index-encoding',
]
},
{
"type": "category",
"label": "Releases",
collapsed: false,
link: {
type: 'generated-index',
},
items: [
'create-a-release',
'create-a-kvrocks-controller-release',
'verify-a-release-candidate',
]
},
{
"type": "category",
"label": "Committers",
collapsed: false,
link: {
type: 'generated-index',
},
items: [
'vote-a-core-developer',
]
},
'security',
],
};
module.exports = sidebars;