-
Notifications
You must be signed in to change notification settings - Fork 135
/
app.json
46 lines (46 loc) · 1.2 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
{
"name": "ForwardBot",
"description": "Simple bot to forward messages from a channel to other using Telethon.",
"keywords": [
"telegram",
"bot",
"plugin",
"telegram-forwardbot",
"productivity"
],
"repository": "https://github.com/rahulps100/ForwardBot",
"website": "https://github.com/rahulps100/ForwardBot",
"success_url": "https://github.com/rahulps100/ForwardBot",
"env": {
"API_ID": {
"description": "Get this value from my.telegram.org! Please do not steal",
"value": ""
},
"API_HASH": {
"description": "Get this value from my.telegram.org! Please do not steal",
"value": ""
},
"STRING": {
"description": "Generate a telethon string session",
"value": ""
},
"BOT_TOKEN": {
"description": "Your Bot Token. Generated using @BotFather",
"value": ""
},
"SUDO_USERS": {
"description": "Users who can use the bot",
"value": ""
},
"ENV": {
"description": "Dont Do Anything",
"value": "True",
"required": false
}
},
"buildpacks": [
{
"url": "heroku/python"
}
]
}