-
Notifications
You must be signed in to change notification settings - Fork 609
Expand file tree
/
Copy pathsidebars.js
More file actions
84 lines (82 loc) · 1.96 KB
/
Copy pathsidebars.js
File metadata and controls
84 lines (82 loc) · 1.96 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
// @ts-check
/**
* The sidebar is maintained by hand, so the reading order is a deliberate
* decision and not a side effect of the file names.
*
* @type {import('@docusaurus/plugin-content-docs').SidebarsConfig}
*/
const sidebars = {
docsSidebar: [
'intro',
{
type: 'category',
label: 'Getting Started',
collapsed: false,
items: [
'getting-started/requirements',
'getting-started/docker',
'getting-started/from-source',
'getting-started/game-client',
'getting-started/test-accounts',
],
},
{
type: 'category',
label: 'Deployment',
items: [
'deployment/overview',
'deployment/all-in-one',
'deployment/all-in-one-traefik',
'deployment/distributed',
'deployment/startup-parameters',
],
},
{
type: 'category',
label: 'Admin Panel',
items: [
'admin-panel/overview',
'admin-panel/setup',
'admin-panel/configuration-updates',
'admin-panel/servers',
'admin-panel/accounts',
'admin-panel/online-accounts',
'admin-panel/game-configuration',
'admin-panel/plugins',
'admin-panel/chat-commands',
'admin-panel/map-editor',
'admin-panel/live-map',
'admin-panel/logs-and-monitoring',
'admin-panel/authentication',
'admin-panel/users',
'admin-panel/common-tasks',
],
},
{
type: 'category',
label: 'Server features',
items: [
'server-features/bots',
'server-features/test-actors',
],
},
{
type: 'category',
label: 'Development',
items: [
'development/architecture',
'development/solution-structure',
'development/contributing',
],
},
{
type: 'category',
label: 'Reference',
items: [
'reference/ports',
'reference/packets',
],
},
],
};
export default sidebars;