forked from discord-tickets/bot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pterodactyl.json
124 lines (124 loc) · 4.34 KB
/
pterodactyl.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
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
{
"_comment": "DO NOT EDIT: FILE GENERATED AUTOMATICALLY BY PTERODACTYL PANEL - PTERODACTYL.IO",
"meta": {
"version": "PTDL_v2",
"update_url": null
},
"exported_at": "2024-01-15T00:25:21+00:00",
"name": "Discord Tickets Bot",
"author": "contact@bisecthosting.com",
"description": "The official egg for the Discord Tickets bot.",
"features": null,
"docker_images": {
"4.0 (recommended)": "ghcr.io\/discord-tickets\/bot:4.0",
"latest": "ghcr.io\/discord-tickets\/bot:latest",
"main (unstable)": "ghcr.io\/discord-tickets\/bot:main"
},
"file_denylist": [],
"startup": "\/app\/scripts\/start.sh",
"config": {
"files": "{\r\n \".env\": {\r\n \"parser\": \"properties\",\r\n \"find\": {\r\n \"HTTP_PORT\": \"{{server.build.default.port}}\"\r\n }\r\n }\r\n}",
"startup": "{\r\n \"done\": \"SUCCESS\"\r\n}",
"logs": "{}",
"stop": "exit"
},
"scripts": {
"installation": {
"script": "output_file=\"\/mnt\/server\/.env\"\r\nrandom=$(cat \/dev\/urandom | tr -dc 'a-f0-9' | fold -w 48 | head -n 1)\r\necho \"# Most environment variables can be found on the Startup page\" >> $output_file\r\necho \"ENCRYPTION_KEY=${random}\" >> $output_file\r\necho \"HTTP_EXTERNAL=http:\/\/${SERVER_IP}:${SERVER_PORT}\" >> $output_file\r\necho \"HTTP_PORT=\" >> $output_file\r\necho \"Environment variables written to $output_file\"",
"container": "node:18-buster-slim",
"entrypoint": "bash"
}
},
"variables": [
{
"name": "Database Provider",
"description": "The type of database you want to use. SQLite is not recommended in production.",
"env_variable": "DB_PROVIDER",
"default_value": "sqlite",
"user_viewable": true,
"user_editable": true,
"rules": "required|string|max:20|in:sqlite,mysql,postgresql",
"field_type": "text"
},
{
"name": "Database URL",
"description": "Leave blank if using SQLite, but SQLite is not recommended in production.\r\nhttps:\/\/discordtickets.app\/self-hosting\/configuration\/#db_connection_url",
"env_variable": "DB_CONNECTION_URL",
"default_value": "",
"user_viewable": true,
"user_editable": true,
"rules": "nullable|string|max:250",
"field_type": "text"
},
{
"name": "Discord 0Auth2 Secret",
"description": "",
"env_variable": "DISCORD_SECRET",
"default_value": "",
"user_viewable": true,
"user_editable": true,
"rules": "nullable|string|max:75",
"field_type": "text"
},
{
"name": "Discord Bot Token",
"description": "",
"env_variable": "DISCORD_TOKEN",
"default_value": "",
"user_viewable": true,
"user_editable": true,
"rules": "nullable|string|max:100",
"field_type": "text"
},
{
"name": "Owner IDs",
"description": "Comma-separated list of the bot owners' Discord IDs. The default is that of the bot developer and is recommended to leave in if you want them to be able to debug issues for you.",
"env_variable": "SUPER",
"default_value": "319467558166069248",
"user_viewable": true,
"user_editable": true,
"rules": "nullable|string|max:200",
"field_type": "text"
},
{
"name": "PTERODACTYL",
"description": "Internal variable to denote to the bot that it is in a pterodactyl container, required for functionality",
"env_variable": "PTERODACTYL",
"default_value": "true",
"user_viewable": false,
"user_editable": false,
"rules": "required|string",
"field_type": "text"
},
{
"name": "Trust proxies?",
"description": "Should proxy headers be trusted?\r\nOnly enable this if running behind a safe reverse proxy.",
"env_variable": "HTTP_TRUST_PROXY",
"default_value": "false",
"user_viewable": true,
"user_editable": true,
"rules": "required|string|max:20|in:true,false",
"field_type": "text"
},
{
"name": "Override archive",
"description": "If set to \"false\", archives will be forcibly disabled in all servers.",
"env_variable": "OVERRIDE_ARCHIVE",
"default_value": "",
"user_viewable": true,
"user_editable": true,
"rules": "nullable|string|max:20",
"field_type": "text"
},
{
"name": "Auto-publish commands?",
"description": "If enabled, commands will be published on startup so you don't need to do it manually.",
"env_variable": "PUBLISH_COMMANDS",
"default_value": "true",
"user_viewable": true,
"user_editable": true,
"rules": "required|string|max:20|in:true,false",
"field_type": "text"
}
]
}