-
Notifications
You must be signed in to change notification settings - Fork 11
/
app.json
54 lines (54 loc) · 1.43 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
{
"name": "VenomX-Userbot",
"description": "[VenomX-Userbot] is a modular Telegram userbot running on Python3 with the Pyrogram Library.",
"stack": "heroku-22",
"env": {
"API_ID": {
"description": "Get API ID on the web my.telegram.org Enter the Telegram API ID",
"required": true
},
"API_HASH": {
"description": "Get Hash API on the web my.telegram.org",
"required": true
},
"STRING_SESSION1": {
"description": "Get String Session Pyrogram in Group » https://t.me/Venom_Chatz» Then type #string",
"required": true
},
"BOTLOG_CHATID": {
"description": "Create a public telegram group then enter @MissRose_bot type /id, enter the group ID here. example: -1001473548xxx",
"value": "",
"required": false
},
"HEROKU_API_KEY": {
"description": "Get your Heroku API KEY here » https://dashboard.heroku.com/account",
"required": false
},
"HEROKU_APP_NAME": {
"description": "Enter the Heroku App Name, the first App Name to be filled in (see top)",
"required": false
}
},
"addons": [
{
"plan": "heroku-postgresql",
"options": {
"version": "16"
}
}
],
"buildpacks": [
{
"url": "heroku/python"
},
{
"url": "https://github.com/interconnectit/heroku-buildpack-ffmpeg"
}
],
"formation": {
"workers": {
"quantity": 1,
"size": "basic"
}
}
}