-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathsidebars.ts
86 lines (84 loc) · 2.18 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
import type {SidebarsConfig} from '@docusaurus/plugin-content-docs';
const sidebars: SidebarsConfig = {
smqSidebar: [
{
type: 'doc',
id: 'index',
label: 'Overview',
},
{
type: 'doc',
id: 'architecture',
label: 'Architecture',
},
{
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: 'roles', label: 'Roles'},
{type: 'doc', id: 'authz-spec', label: 'SuperMQ Authorization Specification Document'},
{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: 'smq-contrib', label: 'SMQ-Contrib Repository'},
{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;