-
-
Notifications
You must be signed in to change notification settings - Fork 21
/
app.json
71 lines (71 loc) · 2.4 KB
/
app.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
{
"env": {
"API_ID": {
"description": "Get this value from API development tools - \"my.telegram.org/apps\" at App api_id:",
"required": true
},
"API_HASH": {
"description": "Get this value from API development tools - \"my.telegram.org/apps\" at App api_hash:",
"required": true
},
"STRING_SESSION": {
"description": "Telethon Session from \"t.me/strgen_bot\" or \"replit.com/@notudope/strgen\"",
"required": true
},
"BOTLOGS": {
"description": "Your BOTLOGS group id e.g: -100xxx or skip this to use autopilot instantly. YOU NOT UNDERSTAND? THEN DO NOT CHANGE 0 !!",
"required": false,
"value": "0"
},
"HANDLER": {
"description": "Initial command handler (prefix), supported characters \"github.com/kastaid/getter/blob/main/getter/config.py\". Default: [ . ]",
"required": false,
"value": "."
},
"NO_HANDLER": {
"description": "Initial command without handler (prefix)",
"required": false,
"value": "False"
},
"TZ": {
"description": "Set local timezone: Continent/Country. Get list from \"gist.github.com/notudope/9c3b8a5389293d9fe34c6c1f2484eeb3#file-timezones-txt\". Default: Asia/Jakarta",
"required": false,
"value": "Asia/Jakarta"
},
"HEROKU_APP_NAME": {
"description": "Input this App name at the top ↑",
"required": true
},
"HEROKU_API": {
"description": "Get the API Key from \"dashboard.heroku.com/account\"",
"required": true
}
},
"success_url": "https://t.me/kastaot",
"buildpacks": [
{
"url": "heroku/python"
},
{
"url": "https://github.com/heroku/heroku-buildpack-apt"
},
{
"url": "https://github.com/heroku/heroku-buildpack-google-chrome"
},
{
"url": "https://github.com/heroku/heroku-buildpack-chromedriver"
},
{
"url": "https://github.com/jonathanong/heroku-buildpack-ffmpeg-latest"
}
],
"stack": "heroku-22",
"addons": [
{
"plan": "heroku-postgresql",
"options": {
"version": "14"
}
}
]
}