-
Notifications
You must be signed in to change notification settings - Fork 194
/
app.json
58 lines (58 loc) · 1.66 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
{
"name": "Unzip Bot",
"description": "A Telegram Bot to Extract Various Types Of Archives",
"logo": "https://telegra.ph/file/dab7c08182e6d9e03bcef.jpg",
"keywords": [
"7z",
"Telegram Bot",
"unzip bot",
"unarchive bot",
"extractor bot"
],
"website": "https://t.me/NexaBotsUpdates",
"repository": "https://github.com/Itz-fork/Unzipper-Bot",
"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
},
"BOT_OWNER": {
"description": "Telegram Id of your account",
"required": true
},
"BOT_TOKEN": {
"description": "Your Bot Token From @BotFather",
"required": true
},
"MONGODB_URL": {
"description": "Your MongoDB url, Get it from https://www.mongodb.com/",
"required": true
},
"LOGS_CHANNEL": {
"description": "Make a private channel and forward a message from that channel to @ChannelidHEXbot and Get this",
"required": true
},
"GOFILE_TOKEN": {
"description": "Your gofile.io API token from your profile page",
"required": true
}
},
"addons": [],
"buildpacks": [
{
"url": "heroku/python"
}
],
"formation": {
"worker": {
"quantity": 1,
"size": "free"
}
},
"stack": "container"
}