mirror of
https://github.com/JonasunderscoreJones/McWebserver.git
synced 2025-10-23 19:39:19 +02:00
Added base mod
base mod with basic http server and simple config system
This commit is contained in:
commit
ec3c622896
231 changed files with 3298 additions and 0 deletions
BIN
build/resources/main/assets/mcwebserver/icon.png
Normal file
BIN
build/resources/main/assets/mcwebserver/icon.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 453 B |
39
build/resources/main/fabric.mod.json
Normal file
39
build/resources/main/fabric.mod.json
Normal file
|
@ -0,0 +1,39 @@
|
|||
{
|
||||
"schemaVersion": 1,
|
||||
"id": "mcwebserver",
|
||||
"version": "v0.1.0",
|
||||
|
||||
"name": "McWebserver",
|
||||
"description": "A simple webserver that runs alongside the Minecraft Server",
|
||||
"authors": [
|
||||
"Jonas_Jones"
|
||||
],
|
||||
"contact": {
|
||||
"homepage": "https://jonasjones.me/McWebserver",
|
||||
"sources": "https://github.com/J-onasJones/McWebserver",
|
||||
"issues": "https://github.com/J-onasJones/McWebserver/issues"
|
||||
},
|
||||
|
||||
"license": "CC0-1.0",
|
||||
"icon": "assets/mcwebserver/icon.png",
|
||||
|
||||
"environment": "server",
|
||||
"entrypoints": {
|
||||
"main": [
|
||||
"me.jonasjones.mcwebserver.McWebserver"
|
||||
]
|
||||
},
|
||||
"mixins": [
|
||||
"mcwebserver.mixins.json"
|
||||
],
|
||||
|
||||
"depends": {
|
||||
"fabricloader": ">=0.14.6",
|
||||
"fabric": "*",
|
||||
"minecraft": "~1.19",
|
||||
"java": ">=17"
|
||||
},
|
||||
"suggests": {
|
||||
"another-mod": "*"
|
||||
}
|
||||
}
|
14
build/resources/main/mcwebserver.mixins.json
Normal file
14
build/resources/main/mcwebserver.mixins.json
Normal file
|
@ -0,0 +1,14 @@
|
|||
{
|
||||
"required": true,
|
||||
"minVersion": "0.8",
|
||||
"package": "net.fabricmc.example.mixin",
|
||||
"compatibilityLevel": "JAVA_17",
|
||||
"mixins": [
|
||||
],
|
||||
"client": [
|
||||
"ExampleMixin"
|
||||
],
|
||||
"injectors": {
|
||||
"defaultRequire": 1
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue