forked from finos/git-proxy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsidebars.js
More file actions
50 lines (50 loc) · 1.3 KB
/
sidebars.js
File metadata and controls
50 lines (50 loc) · 1.3 KB
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
module.exports = {
mainSidebar: [
'index',
{
type: 'category',
label: 'Quickstart',
link: {
type: 'generated-index',
title: 'Quickstart',
slug: '/category/quickstart',
keywords: ['get started', 'quickstart'],
image: '/img/github-mark.png',
},
collapsible: true,
collapsed: false,
items: ['quickstart/intercept', 'quickstart/approve'],
},
'installation',
'usage',
'deployment',
{
type: 'category',
label: 'Configuration',
link: {
type: 'generated-index',
title: 'Configuration',
slug: '/category/configuration',
keywords: ['config', 'configuration'],
image: '/img/github-mark.png',
},
collapsible: true,
collapsed: false,
items: ['configuration/overview', 'configuration/reference', 'configuration/pre-receive'],
},
{
type: 'category',
label: 'Development',
link: {
type: 'generated-index',
title: 'Development',
slug: '/category/development',
keywords: ['dev', 'development'],
image: '/img/github-mark.png',
},
collapsible: true,
collapsed: false,
items: ['development/contributing', 'development/plugins', 'development/testing'],
},
],
};