-
Notifications
You must be signed in to change notification settings - Fork 57
/
sidebars.js
315 lines (296 loc) · 13.6 KB
/
sidebars.js
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
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
/*
When adding pages to the sidebar, make sure you use the page ID, not the file name of the page
For example, to add a page which had a filename of 'chunky-multi' and a page ID of 'chunky', you would add the following under the appropriate category:
'plugins_and_modifications/multiplatform/chunky'
'plugins_and_modifications/multiplatform/' is the path to the file and '/chunky' is the page ID.
The page ID can be found at the top of each document (usually the second line) where it will say 'id: <pageid>' (<pageid> would be the page ID you put into `sidebars.js`)
Not following this can cause the website build to fail!
*/
module.exports = {
/* Organize sidebar alphabetically */
docs: [
{
type: 'link',
label: 'Website',
href: 'https://bloom.host/'
},
{
type: 'link',
label: 'Support Discord',
href: 'https://discord.gg/bloom',
},
{
type: 'link',
label: 'Billing Support',
href: 'https://billing.bloom.host/supporttickets.php',
},
{
type: 'category',
label: 'Getting Started',
collapsed: false,
items: [
'getting_started/overview',
],
},
{
type: 'category',
label: 'Using the Panel',
collapsed: false,
items: [
{
type: 'link',
label: 'Feature Summary',
href: 'https://bloom.host/duck-panel',
},
'using_the_panel/basic-controls',
'using_the_panel/file-manager-controls',
'using_the_panel/server-importer',
'using_the_panel/schedules',
'using_the_panel/backups/backups',
'using_the_panel/users',
'using_the_panel/databases',
'using_the_panel/ports-and-proxies',
'using_the_panel/sftp',
'using_the_panel/split-server',
'using_the_panel/2fa'
],
},
{
type: 'category',
label: 'Running a Server',
collapsed: true,
items: [
'running_a_server/updating', // How to update
'running_a_server/jars', // Explains the different server JAR file options
'running_a_server/optimization', // Server optimisation information
'running_a_server/world-reset',
'running_a_server/domain',
'running_a_server/java-version',
'running_a_server/datapacks',
'running_a_server/spark',
'running_a_server/timings', // Deprecated, will be removed in a future version of Paper (https://github.com/PaperMC/Paper/discussions/10565)
'running_a_server/icon',
'running_a_server/motd',
'running_a_server/whitelist', // How to turn on whitelist for both Java and Bedrock
'running_a_server/resourcepack',
'running_a_server/converting-worlds', // Converting worlds used on Bukkit (and forks) servers to allow for use in singleplayer/other server software
"plugins_and_modifications/fabric-setup",
"plugins_and_modifications/forge-setup",
'running_a_server/waterfall', // [Unsupported] BungeeCord fork
'running_a_server/velocity',
'running_a_server/internal-servers',
'running_a_server/binarysearch', // Troubleshooting errors caused by plugins
'running_a_server/worlds',
'running_a_server/mcaselector'
],
},
{
type: 'category',
label: 'Games',
collapsed: true,
items: [
{
type: 'category',
label: 'Palworld',
items: [
'games/palworld/config',
'games/palworld/update',
'games/palworld/info'
]
},
{
type: 'category',
label: 'Rust',
items: [
'games/rust/connecting',
'games/rust/admin',
'games/rust/server-list',
'games/rust/plugins',
'games/rust/worlds'
]
},
{
type: 'category',
label: 'Terraria',
items: [
{
type: 'doc',
id: 'games/terraria/connecting'
},
{
type: 'doc',
id: 'games/terraria/password'
},
{
type: 'doc',
id: 'games/terraria/worlds'
},
{
type: 'doc',
id: 'games/terraria/banning'
},
{
type: 'category',
label: 'TShock',
collapsed: false,
items: [
'games/terraria/tshock/overview',
'games/terraria/tshock/admin',
'games/terraria/tshock/whitelisting',
'games/terraria/tshock/plugins',
'games/terraria/tshock/crossplay'
]
},
{
type: 'category',
label: 'tModLoader',
collapsed: false,
items: [
'games/terraria/tmodloader/overview',
'games/terraria/tmodloader/mods'
]
}
]
}
]
},
{
type: 'category',
label: 'Plugins & Modification',
collapsed: true,
items: [
{
type: 'doc',
id: "plugins_and_modifications/installing-plugin", // Bukkit/Spigot/Paper plugin installation guide
},
{
type: 'doc',
id: "plugins_and_modifications/mods-install", // Mods install guide for both Forge and Fabric
},
{
type: 'doc',
id: "plugins_and_modifications/modpacks",
},
{
type: 'doc',
id: "plugins_and_modifications/gtnh", //GTNH
},
{
type: 'category',
label: "Fabric mods",
items: [ // Note: Chunky and LuckPerms pages were moved to multiplatform category
'plugins_and_modifications/fabric_mods/performance-mods' // Mods intended to improve client/server performance
]
},
{
type: 'category',
label: "Multi-platform plugins & mods",
items: [
'plugins_and_modifications/multiplatform/advancedban', // Bans and punishment manager (Bukkit/Spigot/Paper, BungeeCord)
'plugins_and_modifications/multiplatform/bluemap', // 3D web map (Spigot/Paper, Paper/Folia, Forge, Fabric, Neoforge, Sponge)
'plugins_and_modifications/multiplatform/chunky', // World pre-generation plugin (Bukkit, Fabric, Forge)
'plugins_and_modifications/multiplatform/dynmap', // Dynamic web map of Minecraft worlds (Spigot/Paper, Forge, Fabric)
'plugins_and_modifications/multiplatform/litebans', // Bans and punishment manager (Spigot/Paper, BungeeCord, Velocity)
'plugins_and_modifications/multiplatform/luckperms', // Permissions (Bukkit/Spigot/Paper, BungeeCord, Sponge, Forge, Fabric, Nukkit, Velocity)
'plugins_and_modifications/multiplatform/plan', // Player Analytics, (Bukkit/Spigot/Paper, Sponge, Nukkit, Fabric)
'plugins_and_modifications/multiplatform/simple-voice-chat', // Voice chat (Bukkit/Spigot/Paper, Forge, Fabric)
'plugins_and_modifications/multiplatform/squaremap', // Online map (Paper, Fabric, Sponge)
'plugins_and_modifications/multiplatform/worldedit' // World management (Bukkit, Forge, Fabric, Sponge)
]
},
{
type: 'category',
label: "Plugins", // Bukkit/Spigot/Paper plugins
items: [ // Note: Chunky, LiteBans, LuckPerms and PLAN pages were moved to multiplatform category
'plugins_and_modifications/plugins/advancedanticheat', // anticheat (discontinued)
'plugins_and_modifications/plugins/ajparkour', // ajParkour
'plugins_and_modifications/plugins/banannouncer', // announce bans in discord
'plugins_and_modifications/plugins/citizens2',
'plugins_and_modifications/plugins/conditionalcommands',
'plugins_and_modifications/plugins/coreprotect',
'plugins_and_modifications/plugins/craftingstore',
'plugins_and_modifications/plugins/discordsrv', //Discord <-> Minecraft bridge
'plugins_and_modifications/plugins/essentialsx',
'plugins_and_modifications/plugins/floodgate', // Works with GeyserMC to allow bedrock connections, without a Java Edition account.
'plugins_and_modifications/plugins/geysermc', // Minecraft Bedrock player bridge
'plugins_and_modifications/plugins/geyseraddons', // GeyserMC addons
'plugins_and_modifications/plugins/griefprevention',
'plugins_and_modifications/plugins/milk',
'plugins_and_modifications/plugins/multiverse', //Bukkit multi-world manager
'plugins_and_modifications/plugins/papi', // PlaceholderAPI
'plugins_and_modifications/plugins/prism',
'plugins_and_modifications/plugins/servernpc',
'plugins_and_modifications/plugins/tebex', // Minecraft server donation store integration, formerly known as BuyCraft
'plugins_and_modifications/plugins/vault',
'plugins_and_modifications/plugins/venturechat', // Chat handler
'plugins_and_modifications/plugins/viaversion',
'plugins_and_modifications/plugins/votifier', // Minecraft server vote site listener
'plugins_and_modifications/plugins/vulcan', // anticheat
'plugins_and_modifications/plugins/oraxen',
'plugins_and_modifications/plugins/denizen',
'plugins_and_modifications/plugins/ajLeaderboards',
'plugins_and_modifications/plugins/AdvancedEnchantments',
'plugins_and_modifications/plugins/CMI',
"plugins_and_modifications/install-proxy-plugin", // BungeeCord/Velocity proxy plugin install guide
]
}
]
},
{
type: 'category',
label: 'Other Servers',
collapsed: true,
items: [
'other-servers/ark',
'other-servers/caddy-server',
'other-servers/grafana',
],
},
{
type: 'category',
label: 'VPS',
collapsed: true,
items: [
'VPS/starting-with-vps',
'VPS/vnc',
'VPS/credentials-vps'
],
},
{
type: 'category',
label: 'Dedicated',
collapsed: true,
items: [
'dedicated/reset-password'
],
},
{
type: 'category',
label: 'Billing',
collapsed: true,
items: [
'billing/email_change',
'billing/cancellations',
'billing/upgrades',
'billing/refunds',
'billing/suspensions_and_terminations',
'billing/billing_subusers',
'billing/paypal',
'billing/stripe'
],
},
{
type: 'category',
label: 'Extras',
collapsed: true,
items: [
'extras/ping-issues',
'extras/account-details',
'extras/available-modpacks',
'extras/srvcontrol',
'extras/swap',
'extras/clumsyloader'
],
},
]
}