-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsidebars.ts
More file actions
105 lines (103 loc) · 2.3 KB
/
sidebars.ts
File metadata and controls
105 lines (103 loc) · 2.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
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
import type {SidebarsConfig} from '@docusaurus/plugin-content-docs';
const sidebars: SidebarsConfig = {
vpnSidebar: [
{
type: 'category',
label: 'Discover',
key: 'vpn-discover',
items: [
'why-outline',
'concepts',
],
},
{
type: 'category',
label: 'Get Started',
items: [
'vpn/getting-started/server-setup-manager',
'vpn/getting-started/server-setup-advanced',
'vpn/getting-started/share-access',
],
},
{
type: 'category',
label: 'Manage & Scale',
items: [
'vpn/management/share-management-access',
'vpn/management/dynamic-access-keys',
'vpn/management/config',
'vpn/management/metrics',
],
},
{
type: 'category',
label: 'Resilience Against Blocking',
items: [
'vpn/advanced/floating-ips',
'vpn/advanced/prefixing',
'vpn/advanced/websockets',
'download-links',
],
},
{
type: 'category',
label: 'Advanced Deployments',
items: [
'vpn/advanced/caddy',
],
},
{
type: 'category',
label: 'Reference',
key: 'vpn-reference',
items: [
'vpn/reference/access-key-config',
{
type: 'link',
label: 'Management API',
href: 'https://redocly.github.io/redoc/?url=https://raw.githubusercontent.com/OutlineFoundation/outline-server/master/src/shadowbox/server/api.yml',
},
],
},
],
sdkSidebar: [
{
type: 'category',
label: 'Discover',
key: 'sdk-discover',
items: [
'sdk/what-is-the-sdk',
'sdk/concepts',
],
},
{
type: 'category',
label: 'Integrate',
items: [
'sdk/mobile-app-integration',
'sdk/use-sdk-in-go',
],
},
{
type: 'category',
label: 'Tools',
items: [
'sdk/command-line-debugging',
],
},
{
type: 'category',
label: 'Reference',
key: 'sdk-reference',
items: [
'sdk/reference/smart-dialer-config',
{
type: 'link',
label: 'Go API Reference',
href: 'https://pkg.go.dev/github.com/OutlineFoundation/outline-sdk',
},
],
},
],
};
export default sidebars;