-
Notifications
You must be signed in to change notification settings - Fork 71
/
app.json
60 lines (60 loc) · 1.62 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
{
"name": "Nexa Userbot",
"description": "Simple and Light Weight Pyrogram Userbot",
"logo": "https://telegra.ph/file/a2471aa31028b2c429390.jpg",
"keywords": [
"userbot",
"Telegram Bot",
"nexa userbot"
],
"website": "https://t.me/NexaBotsUpdates",
"repository": "https://github.com/Itz-fork/Nexa-Userbot",
"success_url": "https://t.me/NexaBotsUpdates",
"env": {
"APP_ID": {
"description": "Your APP_ID from my.telegram.org",
"required": true
},
"API_HASH": {
"description": "Your API_HASH from my.telegram.org",
"required": true
},
"CMD_PREFIX": {
"description": "Command prefix",
"required": false,
"value": "."
},
"HEROKU_APP_NAME": {
"description": "Your Heroku App Name",
"required": true
},
"HEROKU_API_KEY": {
"description": "Your Heroku API KEY",
"required": true
},
"MONGODB_URL": {
"description": "Your MongoDB Url. Get it from www.mongodb.com",
"required": true
},
"PYRO_STR_SESSION": {
"description": "Pyrogram String Session",
"required": true
}
},
"addons": [],
"buildpacks": [
{
"url": "heroku/python"
},
{
"url": "https://github.com/jonathanong/heroku-buildpack-ffmpeg-latest.git"
}
],
"formation": {
"worker": {
"quantity": 1,
"size": "free"
}
},
"stack": "container"
}