forked from YunoHost-Apps/minecraft_ynh
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
84 lines (84 loc) · 2.97 KB
/
manifest.json
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
{
"name": "Minecraft",
"id": "minecraft",
"packaging_format": 1,
"description": {
"en": "Three-dimensional sandbox construction game",
"fr": "Jeu de construction de type \"bac à sable\" en trois dimensions"
},
"version": "1.18.1~ynh1",
"url": "https://www.minecraft.net/",
"upstream": {
"license": "non-free",
"website": "https://www.minecraft.net/",
"admindoc": "https://minecraft.gamepedia.com/Tutorials/Setting_up_a_server"
},
"license": "non-free",
"maintainer": {
"name": "liberodark",
"email": "[email protected]"
},
"requirements": {
"yunohost": ">= 4.3.0"
},
"multi_instance": false,
"services": [
"nginx"
],
"arguments": {
"install": [
{
"name": "server",
"type": "string",
"ask": {
"en": "Select your server",
"fr": "Choisir votre serveur"
},
"choices": ["vanilla", "vanilla-snapshot", "bungeecord", "craftbukkit", "paper", "spigot", "waterfall"],
"default": "vanilla"
},
{
"name": "ram",
"type": "string",
"ask": {
"en": "Set the memory limit for the server. Convert the number to mebibytes (binary MB): for example, 2GB = 2048, 4GB = 4096...",
"fr": "Définir la mémoire du serveur ? Convertir le chiffre en mébioctets (Mo binaires) : soit 2Go = 2048, 4Go = 4096..."
},
"example": "1024, 2048, 4096...",
"default": "2048"
},
{
"name": "op",
"type": "string",
"ask": {
"en": "Enter the name of the administrator (Minecraft pseudo)",
"fr": "Entrer le nom de l'adminsitrateur (pseudo Minecraft)"
}
},
{
"name": "rcon",
"type": "string",
"ask": {
"en": "Do you want to activate RCON?",
"fr": "Voulez vous activer RCON ?"
},
"example": "true, false",
"default": "true"
},
{
"name": "password",
"type": "password"
},
{
"name": "eula",
"type": "string",
"ask": {
"en": "By changing the setting below to TRUE you are indicating your agreement to Minecraft's EULA (https://account.mojang.com/documents/minecraft_eula).",
"fr": "En modifiant le paramètre ci-dessous sur TRUE, vous indiquez votre accord avec la CLUF de Minecraft (https://account.mojang.com/documents/minecraft_eula)."
},
"example": "true, false",
"default": "true"
}
]
}
}