-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsidebars.ts
142 lines (139 loc) · 3.74 KB
/
sidebars.ts
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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
import type {SidebarsConfig} from '@docusaurus/plugin-content-docs';
const sidebars: SidebarsConfig = {
userSidebar: [
{
type: 'doc',
id: 'index',
label: 'Overview',
},
{
type: 'doc',
id: 'architecture',
label: 'Architecture',
},
{
type: 'doc',
id: 'users-quick-start',
label: 'Getting Started',
},
{
type: 'category',
label: 'Domain Management',
collapsible: true,
items: [
{type: 'doc', id: 'domains', label: 'Domains'},
{type: 'doc', id: 'billing', label: 'Billing'},
{type: 'doc', id: 'invitations', label: 'Invitations'},
],
},
{
type: 'category',
label: 'Client Management',
collapsible: true,
items: [
{type: 'doc', id: 'intro-to-client-mgmnt', label: 'Introduction'},
{type: 'doc', id: 'groups', label: 'Groups'},
{type: 'doc', id: 'clients', label: 'Clients'},
{type: 'doc', id: 'channels', label: 'Channels'},
{type: 'doc', id: 'bootstraps', label: 'Bootstraps'},
],
},
{
type: 'category',
label: 'Dashboards',
collapsible: true,
items: [
{type: 'doc', id: 'dashboards', label: 'Dashboards'},
{type: 'doc', id: 'widgets', label: 'Widgets'},
{type: 'doc', id: 'linechart', label: 'Line Chart'},
{type: 'doc', id: 'areachart', label: 'Area Chart'},
{type: 'doc', id: 'barchart', label: 'Bar Chart'},
{type: 'doc', id: 'gauges', label: 'Gauges'},
{type: 'doc', id: 'piechart', label: 'Pie Chart'},
{type: 'doc', id: 'countcard', label: 'Count Card'},
{type: 'doc', id: 'tablecard', label: 'Table Card'},
{type: 'doc', id: 'valuecard', label: 'Value Card'},
{type: 'doc', id: 'maps', label: 'Maps'},
{type: 'doc', id: 'controls', label: 'Controls'},
],
},
{
type: 'doc',
id: 'rules-engine',
label: 'Rules Engine',
},
{
type: 'doc',
id: 'users',
label: 'Profile Management',
},
],
devSidebar: [
{
type: 'category',
label: 'Concepts',
items: [
{type: 'doc', id: 'entities', label: 'Entities'},
{type: 'doc', id: 'authentication', label: 'Authentication'},
{type: 'doc', id: 'authorization', label: 'Authorization'},
{type: 'doc', id: 'security', label: 'Security'},
{type: 'doc', id: 'messaging', label: 'Messaging'},
],
},
{
type: 'category',
label: 'Quick Start',
items: [
{type: 'doc', id: 'getting-started', label: 'Getting Started'},
{type: 'doc', id: 'api', label: 'API'},
{type: 'doc', id: 'cli', label: 'CLI'},
],
},
{
type: 'category',
label: 'Development Tools',
items: [
{type: 'doc', id: 'dev-guide', label: 'Developers Guide'},
{type: 'doc', id: 'events', label: 'Events'},
{type: 'doc', id: 'tracing', label: 'Tracing'},
],
},
{
type: 'doc',
id: 'storage',
label: 'Storage',
},
{
type: 'doc',
id: 'edge',
label: 'Edge',
},
{
type: 'doc',
id: 'certs',
label: 'Certs',
},
{
type: 'doc',
id: 'kubernetes',
label: 'Kubernetes',
},
{
type: 'category',
label: 'Extensions',
items: [
{type: 'doc', id: 'lora', label: 'LoRa'},
{type: 'doc', id: 'opcua', label: 'OPC-UA'},
{type: 'doc', id: 'provision', label: 'Provisioning'},
{type: 'doc', id: 'twins', label: 'Twins Service'},
{type: 'doc', id: 'bootstrap', label: 'Bootstrap'},
],
},
{
type: 'doc',
id: 'benchmark',
label: 'Test Spec',
},
],
};
export default sidebars;