-
-
Notifications
You must be signed in to change notification settings - Fork 5.5k
/
Copy pathminectl.ts
296 lines (296 loc) · 8.22 KB
/
minectl.ts
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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
const completionSpec: Fig.Spec = {
name: "minectl",
description: "Create Minecraft Server on different cloud provider",
subcommands: [
{
name: "completion",
description: "Generate the autocompletion script for the specified shell",
subcommands: [
{
name: "bash",
description: "Generate the autocompletion script for bash",
options: [
{
name: "--no-descriptions",
description: "Disable completion descriptions",
},
],
},
{
name: "fish",
description: "Generate the autocompletion script for fish",
options: [
{
name: "--no-descriptions",
description: "Disable completion descriptions",
},
],
},
{
name: "powershell",
description: "Generate the autocompletion script for powershell",
options: [
{
name: "--no-descriptions",
description: "Disable completion descriptions",
},
],
},
{
name: "zsh",
description: "Generate the autocompletion script for zsh",
options: [
{
name: "--no-descriptions",
description: "Disable completion descriptions",
},
],
},
],
},
{
name: "create",
description: "Create an Minecraft Server",
options: [
{
name: ["--filename", "-f"],
description: "Location of the manifest file",
args: { name: "filename", template: ["filepaths"] },
},
{
name: ["--wait", "-w"],
description: "Wait for Minecraft Server is started",
},
],
},
{
name: "delete",
description: "Delete an Minecraft Server",
options: [
{
name: ["--filename", "-f"],
description: "Location of the manifest file",
args: { name: "filename", template: ["filepaths"] },
},
{
name: "--id",
description: "Contains the server id",
args: { name: "id" },
},
{
name: ["--yes", "-y"],
description: "Automatically delete the server",
},
],
},
{
name: "list",
description: "List all Minecraft Server",
options: [
{
name: ["--provider", "-p"],
description:
"The cloud provider - civo|scaleway|do|hetzner|akamai|ovh|equinix|gce|vultr|azure|oci|ionos|aws|vexxhost|multipass|exoscale",
args: {
name: "provider",
suggestions: [
"civo",
"scaleway",
"do",
"hetzner",
"linode",
"ovh",
"equinix",
"gce",
"vultr",
"azure",
"oci",
"ionos",
"aws",
"vexxhost",
"multipass",
"exoscale",
],
},
},
{
name: ["--region", "-r"],
description:
"The region (gce: zone) for your cloud provider - civo|gce",
args: { name: "region" },
},
],
},
{
name: "plugins",
description: "Manage your plugins for a specific server",
options: [
{
name: ["--destination", "-d"],
description: "Plugin destination folder",
args: { name: "destination", template: ["folders"] },
},
{
name: ["--filename", "-f"],
description: "Location of the manifest file",
args: { name: "filename", template: ["filepaths"] },
},
{
name: "--id",
description: "Contains the server id",
args: { name: "id" },
},
{
name: ["--plugin", "-p"],
description: "Location of the plugin",
args: { name: "plugin", template: ["filepaths"] },
},
{
name: ["--ssh-key", "-k"],
description: "Specify a specific path for the SSH key",
args: { name: "ssh-key" },
},
],
},
{
name: "rcon",
description: "RCON client to your Minecraft server",
options: [
{
name: ["--filename", "-f"],
description: "Location of the manifest file",
args: { name: "filename", template: ["filepaths"] },
},
{
name: "--id",
description: "Contains the server id",
args: { name: "id" },
},
],
},
{
name: "update",
description: "Update an Minecraft Server",
options: [
{
name: ["--filename", "-f"],
description: "Location of the manifest file",
args: { name: "filename", template: ["filepaths"] },
},
{
name: "--id",
description: "Contains the server id",
args: { name: "id" },
},
{
name: ["--ssh-key", "-k"],
description: "Specify a specific path for the SSH key",
args: { name: "ssh-key" },
},
],
},
{ name: "version", description: "Display the clients version information" },
{
name: "wizard",
description:
"Calls the minectl wizard to create interactively a minectl 🗺 config",
options: [
{
name: ["--output", "-o"],
description:
"Output folder for the configuration file for minectl 🗺 (default: ~/.minectl)",
args: {
name: "output",
template: ["folders"],
suggestCurrentToken: true,
},
},
],
},
{
name: "help",
description: "Help about any command",
subcommands: [
{
name: "completion",
description:
"Generate the autocompletion script for the specified shell",
subcommands: [
{
name: "bash",
description: "Generate the autocompletion script for bash",
},
{
name: "fish",
description: "Generate the autocompletion script for fish",
},
{
name: "powershell",
description: "Generate the autocompletion script for powershell",
},
{
name: "zsh",
description: "Generate the autocompletion script for zsh",
},
],
},
{ name: "create", description: "Create an Minecraft Server" },
{ name: "delete", description: "Delete an Minecraft Server" },
{ name: "list", description: "List all Minecraft Server" },
{
name: "plugins",
description: "Manage your plugins for a specific server",
},
{ name: "rcon", description: "RCON client to your Minecraft server" },
{ name: "update", description: "Update an Minecraft Server" },
{
name: "version",
description: "Display the clients version information",
},
{
name: "wizard",
description:
"Calls the minectl wizard to create interactively a minectl 🗺 config",
},
],
},
],
options: [
{
name: "--headless",
description:
"Set this value to if mincetl is called by a CI system. Enables logging and disables human-readable output rendering (default: false)",
isPersistent: true,
},
{
name: "--log-encoding",
description: "Set the log encoding: console|json (default: console)",
isPersistent: true,
args: {
name: "log-encoding",
default: "console",
suggestions: ["console", "json"],
},
},
{
name: "--verbose",
description:
"Enable verbose logging: debug|info|warn|error|dpanic|panic|fatal",
isPersistent: true,
args: {
name: "verbose",
suggestions: [
"debug",
"info",
"warn",
"error",
"dpanic",
"panic",
"fatal",
],
},
},
{ name: ["--help", "-h"], description: "Display help", isPersistent: true },
],
};
export default completionSpec;