-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathegg-python.json
56 lines (56 loc) · 2.06 KB
/
egg-python.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
{
"_comment": "DO NOT EDIT: FILE GENERATED AUTOMATICALLY BY PTERODACTYL PANEL - PTERODACTYL.IO",
"meta": {
"version": "PTDL_v2",
"update_url": null
},
"exported_at": "2022-06-20T05:49:03-04:00",
"name": "Python",
"author": "fyrenodes@gmail.com",
"description": "Official Python egg for FyreNodes.",
"features": null,
"docker_images": {
"Python 3.10": "ghcr.io\/parkervcp\/yolks:python_3.10",
"Python 3.9": "ghcr.io\/parkervcp\/yolks:python_3.9",
"Python 3.8": "ghcr.io\/parkervcp\/yolks:python_3.8",
"Python 3.7": "ghcr.io\/parkervcp\/yolks:python_3.7",
"Python 2.7": "ghcr.io\/parkervcp\/yolks:python_2.7"
},
"file_denylist": [],
"startup": "pip install -U --prefix .local -r {{REQ_FILE}}; {{STARTUP_CMD}}",
"config": {
"files": "{}",
"startup": "{\r\n \"done\": \"ready\"\r\n}",
"logs": "{}",
"stop": "^C"
},
"scripts": {
"installation": {
"script": "#!\/bin\/bash\r\n\r\napt update; apt upgrade -y\r\napt install -y git curl jq file unzip make gcc g++ python python-dev libtool\r\n\r\necho -e \"Installation has completed.\"\r\nexit 0",
"container": "python:3.8-slim",
"entrypoint": "bash"
}
},
"variables": [
{
"name": "Startup Command",
"description": "Startup command to use when running the application.",
"env_variable": "STARTUP_CMD",
"default_value": "python main.py",
"user_viewable": true,
"user_editable": true,
"rules": "nullable|string|max:100",
"field_type": "text"
},
{
"name": "Requirements File",
"description": "Python requirements file to use when installing dependencies.",
"env_variable": "REQ_FILE",
"default_value": "requirements.txt",
"user_viewable": true,
"user_editable": true,
"rules": "nullable|string|max:35",
"field_type": "text"
}
]
}