-
Notifications
You must be signed in to change notification settings - Fork 1
/
app.json
57 lines (57 loc) · 1.52 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
{
"name": "File-Forward-Bot",
"description": "Use this bot to forward all files from one channel to other even if its private or public.",
"stack": "container",
"keywords": [
"telegram",
"auto-forward-bot",
"forward-bot",
"forward",
"best",
"indian",
"pyrogram",
"media",
"export",
"channel",
"file-forward",
"media-forward"
],
"website": "https://github.com/Joelkb/File-Forward-Bot",
"repository": "https://github.com/Joelkb/File-Forward-Bot",
"env": {
"BOT_TOKEN": {
"description": "Your bot token.",
"required": true
},
"API_ID": {
"description": "Get this value from https://my.telegram.org",
"required": true
},
"API_HASH": {
"description": "Get this value from https://my.telegram.org",
"required": true
},
"TARGET_DB": {
"description": "ID of channel which you want the bot to send all files to.",
"required": true
},
"ADMINS": {
"description": "ID of Admin. Separate multiple Admins by space.",
"required": true
},
"LOG_CHANNEL": {
"description": "Bot Logs,Give a channel id with -100xxxxxxx",
"required": true
}
},
"addons": [],
"buildpacks": [{
"url": "heroku/python"
}],
"formation": {
"worker": {
"quantity": 1,
"size": "eco"
}
}
}