Skip to content

Commit 34a82e8

Browse files
committed
Updated sidebars.js
1 parent 104cd82 commit 34a82e8

File tree

4 files changed

+53
-68
lines changed

4 files changed

+53
-68
lines changed

.github/workflows/deploy.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ name: Deploy to GitHub Pages
33
on:
44
push:
55
branches:
6+
- noone
67
# - source
78
# Review gh actions docs if you want to further define triggers, paths, etc
89
# https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#on

docs/minigame/setup/simple-setup.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -195,7 +195,7 @@ Check if you got all of these points for a complete arena setup
195195

196196
## Bungeecord Mode
197197

198-
Follow the setup above. After you are done with all arenas you can simply enable Bungeemode on the [config.yml](../support/files#configyml). If it does not already exists it will create a file called [bungee.yml](../support/plugin-files-explained.md#bungee-yml) after restart. On that file you can edit some values that are explained [here](../support/plugin-files-explained.md#bungee-yml).
198+
Follow the setup above. After you are done with all arenas you can simply enable Bungeemode on the [config.yml](../support/files#configyml). If it does not already exists it will create a file called [bungee.yml](../support/files#bungeeyml) after restart. On that file you can edit some values that are explained [here](../support/files#bungeeyml).
199199

200200
## Additional Setup Information
201201

docs/minigame/support/useful-server-admin-tips.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ In overall it looks like this:
5656

5757
### **Requirements** Web store \(ex. CraftingStore\), Permissions plugin
5858

59-
Using [Custom permissions](../setup/cmd-perms.md#custom-permissions) you can create global server boosters for your server!
59+
Using [Custom permissions](../setup/cmdsandperms#custom-permissions) you can create global server boosters for your server!
6060

6161
**1**. Create new permission entry in permission.yml
6262

sidebars.js

Lines changed: 50 additions & 66 deletions
Original file line numberDiff line numberDiff line change
@@ -13,74 +13,58 @@
1313

1414
/** @type {import('@docusaurus/plugin-content-docs').SidebarsConfig} */
1515
const sidebars = {
16-
// By default, Docusaurus generates a sidebar from the docs folder structure
17-
minigames: [
18-
{
19-
type: 'category',
20-
label: 'Minigames',
21-
items: [
22-
'minigame/overview',
16+
// By default, Docusaurus generates a sidebar from the docs folder structure
17+
minigames: [
2318
{
24-
/* Setup: [
25-
{
26-
type: 'link',
27-
label: 'Tutorial video', // The label that should be displayed (string).
28-
href: 'https://tutorial.plugily.xyz/' // The target URL (string).
29-
},
30-
'villagedefense/setup/simple',
31-
'villagedefense/setup/cmdsandperms',
32-
'villagedefense/setup/maps',
33-
],
34-
Placeholders: [
35-
'villagedefense/placeholders/placeholderapi',
36-
'villagedefense/placeholders/scoreboard',
37-
],
38-
Development: [
39-
'villagedefense/development/api',
40-
{
41-
type: 'link',
42-
label: 'JavaDocs', // The label that should be displayed (string).
43-
href: 'https://jd.plugily.xyz/apidocs/minecraft/villagedefense/' // The target URL (string).
44-
},
45-
{
46-
type: 'link',
47-
label: 'Maven', // The label that should be displayed (string).
48-
href: 'https://maven.plugily.xyz/plugily/projects/villagedefense/' // The target URL (string).
49-
},
50-
],
51-
Support: [
52-
{
53-
type: 'link',
54-
label: 'Discord support', // The label that should be displayed (string).
55-
href: 'https://discord.plugily.xyz/' // The target URL (string).
56-
},
57-
'villagedefense/support/files',
58-
'villagedefense/support/faq.mdx',
59-
'villagedefense/support/servertips',
60-
],
61-
Addon: [
62-
'villagedefense/addon/overview',
63-
'villagedefense/addon/cmdsandperms',
64-
'villagedefense/addon/files',
65-
'villagedefense/addon/faq.mdx',
66-
],*/
19+
type: 'category',
20+
label: 'Minigames',
21+
items: [
22+
'minigame/overview',
23+
'minigame/placeholders',
24+
{
25+
Setup: [
26+
{
27+
type: 'link',
28+
label: 'Tutorial video', // The label that should be displayed (string).
29+
href: 'https://tutorial.plugily.xyz/' // The target URL (string).
30+
},
31+
'minigame/setup/simple-setup',
32+
'minigame/setup/cmdsandperms',
33+
'minigame/setup/maps',
34+
],
35+
Development: [
36+
'minigame/development/api',
37+
{
38+
type: 'link',
39+
label: 'JavaDocs', // The label that should be displayed (string).
40+
href: 'https://maven.plugily.xyz/' // The target URL (string).
41+
},
42+
{
43+
type: 'link',
44+
label: 'Maven', // The label that should be displayed (string).
45+
href: 'https://maven.plugily.xyz/plugily/projects/' // The target URL (string).
46+
},
47+
],
48+
Support: [
49+
{
50+
type: 'link',
51+
label: 'Discord support', // The label that should be displayed (string).
52+
href: 'https://discord.plugily.xyz/' // The target URL (string).
53+
},
54+
'minigame/support/files',
55+
'minigame/support/faq',
56+
'minigame/support/servertips',
57+
],
58+
Addon: [
59+
'minigame/addon/overview',
60+
'minigame/addon/cmdsandperms',
61+
'minigame/addon/files',
62+
'minigame/addon/faq',
63+
],
64+
}
65+
]
6766
}
68-
]
69-
}
70-
],
71-
72-
// But you can create a sidebar manually
73-
/*
74-
tutorialSidebar: [
75-
'intro',
76-
'hello',
77-
{
78-
type: 'category',
79-
label: 'Tutorial',
80-
items: ['tutorial-basics/create-a-document'],
81-
},
82-
],
83-
*/
67+
],
8468
};
8569

8670
module.exports = sidebars;

0 commit comments

Comments
 (0)