-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsidebars.ts
105 lines (102 loc) · 2.32 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
import type {SidebarsConfig} from '@docusaurus/plugin-content-docs';
const sidebars: SidebarsConfig = {
docs: [
'introduction',
{
type: 'category',
label: 'Installing',
link: {
type: 'doc',
id: 'installing/index',
},
collapsed: false,
items: [
'installing/monsterpi',
'installing/docker_compose',
{
type: 'category',
label: 'Deprecated',
link: {
type: 'doc',
id: 'installing/deprecated/index',
},
items: [
'installing/deprecated/windows_service',
'installing/deprecated/linux_service',
],
},
],
},
{
type: 'category',
label: 'Configuration',
link: {
type: 'doc',
id: 'configuration/index',
},
collapsed: true,
items: [
'configuration/preconfiguration',
{
type: 'category',
label: 'Settings',
link: {
type: 'doc',
id: 'configuration/settings/index',
},
items: [
'configuration/settings/grid_settings',
],
},
'configuration/moonraker',
'configuration/updating_client_bundle',
'configuration/yaml_import_export',
],
},
{
type: 'category',
label: 'Software usage',
link: {
type: 'doc',
id: 'software_usage/index',
},
collapsed: true,
items: [
'software_usage/creating_printers',
'software_usage/organizing_floors',
],
},
{
type: 'category',
label: 'Troubleshooting',
link: {
type: 'doc',
id: 'troubleshooting/index',
},
collapsed: true,
items: [
'troubleshooting/log_dump',
'troubleshooting/sentry',
],
},
],
development: [
'developer_setup/introduction',
'developer_setup/setup_server',
'developer_setup/setup_client',
'developer_setup/setup_octoprint',
'developer_setup/setup_moonraker',
],
community: [
'community/support',
'community/ourteam',
'community/sponsor-us',
'community/links',
{
type: 'link',
label: 'Chat with us on Discord',
href: 'https://discord.gg/mwA8uP8CMc',
},
],
};
export default sidebars;