-
Notifications
You must be signed in to change notification settings - Fork 0
/
egg.json
41 lines (41 loc) · 1.14 KB
/
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
{
"_comment": "DO NOT EDIT: FILE GENERATED AUTOMATICALLY BY PTERODACTYL PANEL - PTERODACTYL.IO",
"meta": {
"version": "PTDL_v1",
"update_url": null
},
"exported_at": "2021-06-28T02:59:54+05:30",
"name": "C# Egg",
"author": "[email protected]",
"description": "Just a normal pterodactyl egg to run C# apps",
"features": null,
"images": [
"quay.io\/chirag350\/csharp-egg"
],
"file_denylist": [],
"startup": "dotnet ${STARTUP_PARAM}",
"config": {
"files": "{}",
"startup": "{\r\n \"done\": \"Started\"\r\n}",
"logs": "{}",
"stop": "^C"
},
"scripts": {
"installation": {
"script": "#!\/bin\/bash\r\necho \"Hello\"",
"container": "debian:bullseye-slim",
"entrypoint": "bash"
}
},
"variables": [
{
"name": "Startup Param",
"description": "",
"env_variable": "STARTUP_PARAM",
"default_value": "run",
"user_viewable": true,
"user_editable": true,
"rules": "required|string|max:200"
}
]
}