-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsidebars.js
More file actions
58 lines (56 loc) · 1.42 KB
/
sidebars.js
File metadata and controls
58 lines (56 loc) · 1.42 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
51
52
53
54
55
56
57
58
// @ts-check
/** @type {import('@docusaurus/plugin-content-docs').SidebarsConfig} */
const sidebars = {
tutorialSidebar: [
'index',
'basicconcepts',
'gettingstarted',
{
type: 'category',
label: 'Providers',
link: { type: 'generated-index' },
items: [{ type: 'autogenerated', dirName: 'provider' }],
},
{
type: 'category',
label: 'Cluster',
link: { type: 'generated-index' },
items: [{ type: 'autogenerated', dirName: 'cluster' }],
},
{
type: 'category',
label: 'Environment',
link: { type: 'generated-index' },
items: [{ type: 'autogenerated', dirName: 'environment' }],
},
{
type: 'category',
label: 'Project',
link: { type: 'generated-index' },
items: [{ type: 'autogenerated', dirName: 'project' }],
},
'connect_to_git',
{
type: 'category',
label: 'Domain',
link: { type: 'generated-index' },
items: [{ type: 'autogenerated', dirName: 'domain' }],
},
{
type: 'category',
label: 'Network Resources',
link: { type: 'generated-index' },
items: [{ type: 'autogenerated', dirName: 'network' }],
},
{
type: 'category',
label: 'User',
link: { type: 'generated-index' },
items: [{ type: 'autogenerated', dirName: 'user' }],
},
'responsability-model',
'cli',
'changelog',
],
};
module.exports = sidebars;