-
Notifications
You must be signed in to change notification settings - Fork 464
/
app.json
54 lines (54 loc) · 1.64 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": "Telegram Message Forwarder Bot",
"description": "A Telegram forwarder bot, which can easily be deployed to Heroku.",
"repository": "https://github.com/viperadnan-git/telegram-message-forwarder-bot",
"logo": "https://avatars1.githubusercontent.com/u/34474300?s=280&v=4",
"keywords": ["python", "pyrogram", "telegram", "forwarder"],
"image": "heroku/python",
"formation": {
"worker": {
"quantity": 1,
"size": "free"
}
},
"env": {
"API_ID": {
"description": "App api_id from https://my.telegram.org"
},
"API_HASH": {
"description": "App api_hash from https://my.telegram.org"
},
"BOT_TOKEN": {
"description": "Bot token from https://t.me/BotFather",
"required": false
},
"FROM_CHATS": {
"description": "Chat ID of the channel/groups/chat from where to forward messages",
"required": false
},
"TO_CHATS": {
"description": "Chat ID of thr chat where to forward messages",
"required": false
},
"TELEGRAM_SESSION": {
"description": "Telegram session name, required if you want to login as user",
"required": false
},
"ADVANCE_CONFIG": {
"description": "Advance config values in valid format.",
"required": false
},
"REMOVE_STRINGS": {
"description": "Keywords to remove from messages before forwarding. Sperated by > ; <",
"required": false
},
"REPLACE_STRING": {
"description": "Keyword to add in the place of REMOVE_STRING",
"required": false
},
"SUDO_USERS": {
"description": "List of sudo users separated by > ; <",
"required": false
}
}
}