-
Notifications
You must be signed in to change notification settings - Fork 1
/
meapi-pterodactyl-egg.json
92 lines (92 loc) · 2.78 KB
/
meapi-pterodactyl-egg.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
85
86
87
88
89
90
91
92
{
"_comment": "Pterodactyl egg for MeAPI",
"meta": {
"version": "PTDL_v2",
"update_url": null
},
"exported_at": "2023-06-08T16:19:41+02:00",
"name": "MeAPI",
"author": "[email protected]",
"description": "Pterodactyl egg for MeAPI",
"features": null,
"docker_images": {
"Java 21": "ghcr.io\/parkervcp\/yolks:java_21"
},
"file_denylist": [],
"startup": "java -Xms128M -Xmx512M -Dterminal.jline=false -Dterminal.ansi=true -jar {{SERVER_JARFILE}} port={{SERVER_PORT}}",
"config": {
"files": "{}",
"startup": "{\r\n \"done\": \"Started web server on port\"\r\n}",
"logs": "{}",
"stop": "^C"
},
"scripts": {
"installation": {
"script": null,
"container": "alpine:3.4",
"entrypoint": "ash"
}
},
"variables": [
{
"name": "Discord bot key",
"description": "Key for discord bot that will be used for updating online information",
"env_variable": "DISCORD_BOT_KEY",
"default_value": "",
"user_viewable": true,
"user_editable": true,
"rules": "string|max:128",
"field_type": "text"
},
{
"name": "Discord user ID",
"description": "User for which to check online status. This should be discord snowflake id.\r\nYou can get it by enabling developer mode in discord and right clicking on a user.",
"env_variable": "DISCORD_USER_ID",
"default_value": "",
"user_viewable": true,
"user_editable": true,
"rules": "string|max:18",
"field_type": "text"
},
{
"name": "Steam name",
"description": "Steam name to be used to check current game and online status",
"env_variable": "STEAM_NAME",
"default_value": "",
"user_viewable": true,
"user_editable": true,
"rules": "string|max:128",
"field_type": "text"
},
{
"name": "FFXIV character ID",
"description": "To get this id, search your character on lodestone https:\/\/na.finalfantasyxiv.com\/lodestone\/character\/ .\r\nAfter clicking on your character, the last part of the url is your character id.",
"env_variable": "FFXIV_CHARACTER_ID",
"default_value": "",
"user_viewable": true,
"user_editable": true,
"rules": "int",
"field_type": "text"
},
{
"name": "LoL region",
"description": "Region ID.",
"env_variable": "LOL_REGION",
"default_value": "eune",
"user_viewable": true,
"user_editable": true,
"rules": "string|max:5",
"field_type": "text"
},
{
"name": "LoL summoner name",
"description": "Summoner name for LoL",
"env_variable": "LOL_SUMMONER_NAME",
"default_value": "",
"user_viewable": true,
"user_editable": true,
"rules": "string|max:64",
"field_type": "text"
}
]
}