-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
📝 more css stuff and start work on metadata docs
- Loading branch information
Showing
7 changed files
with
120 additions
and
21 deletions.
There are no files selected for viewing
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,23 @@ | ||
[metadata] | ||
version = 0 | ||
|
||
[runner] | ||
mainClass = "" | ||
|
||
[module] | ||
configClass = "" | ||
|
||
[module.packages] | ||
databasePackage = "" | ||
slashCommandsPackage = "" | ||
|
||
[information] | ||
id = "" | ||
name = "" | ||
description = "" | ||
version = "${version}" | ||
repo = "" | ||
license = "" | ||
authors = [ | ||
"" | ||
] |
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,24 @@ | ||
[metadata] | ||
version = 0 | ||
|
||
[runner] | ||
mainClass = "one.devos.yiski1.Yiski1" | ||
|
||
[module] | ||
configClass = "one.devos.yiski1.Yiski1Config" | ||
|
||
[module.packages] | ||
databasePackage = "one.devos.yiski1.tables" | ||
slashCommandsPackage = "one.devos.yiski1.commands" | ||
|
||
[information] | ||
id = "yiski1" | ||
name = "Yiski1" | ||
description = "Basic commands and moderation [kick/ban/timeout/logging/etc]" | ||
version = "${version}" | ||
repo = "https://github.com/devOS-Sanity-Edition/yiski/" | ||
license = "MIT" | ||
authors = [ | ||
"asojidev", | ||
"CephalonCosmic" | ||
] |
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,27 @@ | ||
# Modules Metadata | ||
|
||
> Work in Progress | ||
{style="warning"} | ||
|
||
Every module needs its own Metadata file, a file that contains information about what to load. | ||
Specifically, it tells the Runner to run the module's respective config, PostgresQL tables, slash commands, and | ||
information about itself. | ||
|
||
<tabs> | ||
<tab title="Empty"> | ||
<p>yiski.metadata.toml</p> | ||
<br/> | ||
<code-block lang="ini" src="yiski.metadata.example.toml"/> | ||
</tab> | ||
<tab title="Filled"> | ||
<p>yiski.metadata.toml</p> | ||
<br/> | ||
<code-block lang="ini" src="yiski.metadata.toml"/> | ||
</tab> | ||
</tabs> | ||
|
||
|
||
|
||
<seealso> | ||
<!--Provide links to related how-to guides, overviews, and tutorials.--> | ||
</seealso> |
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