-
-
Notifications
You must be signed in to change notification settings - Fork 42
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
phase one of improving content labels
- Loading branch information
Showing
34 changed files
with
892 additions
and
560 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,54 +1,59 @@ | ||
import { defineConfig } from 'astro/config'; | ||
import starlight from '@astrojs/starlight'; | ||
import vue from "@astrojs/vue"; | ||
|
||
import tailwind from "@astrojs/tailwind"; | ||
|
||
// https://astro.build/config | ||
export default defineConfig({ | ||
site: 'https://www.setup.md', | ||
trailingSlash: "never", | ||
integrations: [ | ||
starlight({ | ||
title: 'setup.md', | ||
editLink: { | ||
baseUrl: 'https://github.com/setupmd/docs/edit/v3', | ||
}, | ||
social: { | ||
discord: 'https://link.setup.md/discord', | ||
github: 'https://link.setup.md/repo', | ||
patreon: 'https://link.setup.md/patreon' | ||
}, | ||
sidebar: [ | ||
{ | ||
label: 'Project Information', | ||
autogenerate: { directory: '/information/' }, | ||
collapsed: false, | ||
}, | ||
{ | ||
label: 'Enhancements', | ||
autogenerate: { directory: '/enhancements/' }, | ||
collapsed: true, | ||
}, | ||
{ | ||
label: 'Hosting Tips', | ||
autogenerate: { directory: '/hosting/' }, | ||
collapsed: true, | ||
}, | ||
{ | ||
label: 'Server Tools', | ||
autogenerate: { directory: '/tools/' }, | ||
collapsed: true, | ||
}, | ||
{ | ||
label: 'Server Troubleshooting', | ||
autogenerate: { directory: '/troubleshooting/' }, | ||
collapsed: true, | ||
}, | ||
{ | ||
label: 'Guides', | ||
autogenerate: { directory: '/guides/' }, | ||
collapsed: true, | ||
}, | ||
], | ||
lastUpdated: true, | ||
}), | ||
], | ||
}); | ||
site: 'https://www.setup.md', | ||
trailingSlash: "never", | ||
integrations: [starlight({ | ||
title: 'setup.md', | ||
editLink: { | ||
baseUrl: 'https://github.com/setupmd/docs/edit/v3' | ||
}, | ||
social: { | ||
discord: 'https://link.setup.md/discord', | ||
github: 'https://link.setup.md/repo', | ||
patreon: 'https://link.setup.md/patreon' | ||
}, | ||
sidebar: [{ | ||
label: 'Project Information', | ||
autogenerate: { | ||
directory: '/information/' | ||
}, | ||
collapsed: false | ||
}, { | ||
label: 'Enhancements', | ||
autogenerate: { | ||
directory: '/enhancements/' | ||
}, | ||
collapsed: true | ||
}, { | ||
label: 'Hosting Tips', | ||
autogenerate: { | ||
directory: '/hosting/' | ||
}, | ||
collapsed: true | ||
}, { | ||
label: 'Server Tools', | ||
autogenerate: { | ||
directory: '/tools/' | ||
}, | ||
collapsed: true | ||
}, { | ||
label: 'Server Troubleshooting', | ||
autogenerate: { | ||
directory: '/troubleshooting/' | ||
}, | ||
collapsed: true | ||
}, { | ||
label: 'Guides', | ||
autogenerate: { | ||
directory: '/guides/' | ||
}, | ||
collapsed: true | ||
}] | ||
}), vue(), tailwind()] | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
<template> | ||
<span class="px-3 py-1 rounded-xl" :class="classes"><slot></slot></span> | ||
</template> | ||
|
||
<script> | ||
export default { | ||
props: { | ||
info: { | ||
type: Boolean, | ||
}, | ||
success: { | ||
type: Boolean, | ||
}, | ||
warning: { | ||
type: Boolean, | ||
}, | ||
error: { | ||
type: Boolean, | ||
}, | ||
}, | ||
computed: { | ||
classes() { | ||
return { | ||
"text-green-500 bg-green-50": this.success, | ||
"text-blue-500 bg-blue-50": this.info, | ||
"text-yellow-600 bg-yellow-50": this.warning, | ||
"text-red-500 bg-red-50": this.error, | ||
}; | ||
}, | ||
}, | ||
}; | ||
</script> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,65 @@ | ||
--- | ||
title: About setup.md | ||
title: About Us | ||
description: We're an administration wiki for Minecraft server administrators who are looking to enhance their server experience. | ||
template: splash | ||
hero: | ||
tagline: Learn about the project and how you can help make it even better! | ||
--- | ||
|
||
We're building the ultimate Minecraft documentation project and if you're interested in making things even better this is the page for you. | ||
|
||
This page will be split up into three sections to help you get about: | ||
|
||
<ul class="pl-5 list-disc"> | ||
<li>New Ideas</li> | ||
<li>New Content</li> | ||
<li>Improving Content</li> | ||
</ul> | ||
|
||
:::caution | ||
|
||
If you don't already have a Github account you will be required to make one before proceeding, you can create one at https://github.com/signup. | ||
|
||
::: | ||
|
||
### Submitting Ideas | ||
|
||
If you're an administrator looking for docs that we don't currently have information on then this is probably the section for you, it will explain how to raise a new Github issue with the information required for us to get the ball rolling with your request. | ||
|
||
<ul class="pl-5 list-disc"> | ||
<li>Head on over to the [setup.md Github repository](https://link.setup.md/repo)</li> | ||
<li>In the menu bar at the top select 'Issues'</li> | ||
<li>Select 'New Issue'</li> | ||
<li>Select 'Feature Request'</li> | ||
<li>Complete the required sections on the provided form</li> | ||
</ul> | ||
|
||
Ensure you fill out the form with as much information as you can as this will help us build better documentation | ||
|
||
--- | ||
|
||
### Writing Content | ||
|
||
If you're interested in writing content / migrating your own doc environment over to our wiki a Github PR is your best option. Please also ensure you have followed our [styling guide](https://contribute.setup.md) to ensure your PR doesn't get rejected for lack of continuity. | ||
|
||
#### Single Articles | ||
|
||
If you're going to write a single article you can do so with the following steps, before you consider uploading a document please ensure you are using a template from our [sister github repository](https://github.com/setupmd/templates/tree/main/Docs). | ||
|
||
<ul class="pl-5 list-disc"> | ||
<li>Head on over to the [setup.md Github repository](https://link.setup.md/pr)</li> | ||
<li>In the menu bar at the top select 'Pull Requests'</li> | ||
<li>Select 'New Pull Request'</li> | ||
<li>Select the branch of your forked repo that you wish to commit as a PR</li> | ||
<li>Select 'View Pull Request'</li> | ||
</ul> | ||
|
||
The setup.md contributors will then verify the PR is good and will approve your content. | ||
|
||
#### Migrating Wikis | ||
|
||
If you already use docusaurus for your own project, adding your content here is super easy and should be a drag and drop migration. You'll need to [submit a PR](https://link.setup.md/pr) but it's recommended you reach out to us on [Discord](https://link.setup.md/discord) so we can setup some indexing for your future content. | ||
|
||
--- | ||
|
||
### Improving Content | ||
|
||
As Minecraft continues to grow so will our project and we hope that if you spot inconsistancies in our project you'll hit the 'Edit Page' link at the bottom to submit a PR request with any corrections you wish to make. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,31 +1,17 @@ | ||
--- | ||
description: A focus on traditional chest based plugins for your servers economy. | ||
slug: e/eco/chest | ||
title: Chest Plugins | ||
title: Chest Based | ||
--- | ||
|
||
This section takes a look at current plugins that use craft-able chests for economy based tasks. | ||
A chest shop is a Minecraft resource buying - selling enhancement that is fully craftable in game using normally a standard chest and a wooden sign. These solutions normally bring a more player-to-player style interraction with players chosing to rent space in an admin market / build their own market. | ||
|
||
### Chest Shops | ||
These solutions encourages more direct player to player interaction, these solutions aren't automated and rely on your end users buying and selling between one another. | ||
### Examples | ||
|
||
#### QuickShop | ||
Easily the best Chest Shop plugin, containing pretty much every feature you might need. | ||
We have collated a small list of plugins you can use to get you started with on your Minecraft server below. | ||
|
||
<div> | ||
<a class="button button--outline button--primary" href="https://www.spigotmc.org/resources/quickshop-reremake-1-19-ready-multi-currency.62575/">Spigot</a> | ||
</div> | ||
|
||
#### ChestShop | ||
A simpler chest shop plugin that still has plenty of solid features. | ||
|
||
<div> | ||
<a class="button button--outline button--primary" href="https://www.spigotmc.org/resources/chestshop.51856/">Spigot</a> | ||
</div> | ||
|
||
#### DukesMart | ||
Super basic Chest Shop plugin which uses Gold Ingots as a currency. Terra-Opus is making a fork with a couple improved changes this should also be worth a consideration. | ||
|
||
<div> | ||
<a class="button button--outline button--primary" href="https://github.com/jianbriggs/DukesMart">Github</a> | ||
</div> | ||
<ul class="pl-5 list-disc"> | ||
<li>[QuickShop](/e/pl/quickshop)</li> | ||
<li>[ChestShop](/e/pl/chestshop)</li> | ||
<li>[DukesMart](/e/pl/dukesmart)</li> | ||
</ul> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
--- | ||
description: A chest based player shop plugin to enhance your economy. | ||
slug: e/pl/chestshop | ||
title: ChestShop | ||
--- | ||
|
||
import MainStatusPill from '../../../../../components/MainStatusPill.vue' | ||
import { LinkCard, CardGrid } from '@astrojs/starlight/components'; | ||
|
||
#### This enhancement supports | ||
<br/> | ||
<MainStatusPill info>Spigot / Paper & forks only</MainStatusPill> | ||
<br/> | ||
A simple bare bones chest shop plugin, think 'QuickShop' without all the fancy bells and whistles. ChestShop makes a great plugin for anyone who just wants to get some simple buying and selling going in their server. | ||
|
||
<LinkCard | ||
title="Spigot" | ||
description="View ChestShop's official Spigot page for downloading the plugin." | ||
href="https://www.spigotmc.org/resources/chestshop.51856/" | ||
/> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
--- | ||
description: A chest based player shop plugin to enhance your economy. | ||
slug: e/pl/dukesmart | ||
title: DukesMart | ||
--- | ||
|
||
import MainStatusPill from '../../../../../components/MainStatusPill.vue' | ||
import { LinkCard, CardGrid } from '@astrojs/starlight/components'; | ||
|
||
#### This enhancement supports | ||
<br/> | ||
<MainStatusPill info>Spigot / Paper & forks only</MainStatusPill> | ||
<br/> | ||
A plugin to watch as the light weight chest shop plugin was rumoured to be getting one final breath of life with a fork. | ||
|
||
<LinkCard | ||
title="Github" | ||
description="View DukesMart's official Github page for downloading the plugin." | ||
href="https://github.com/jianbriggs/DukesMart" | ||
/> |
Oops, something went wrong.