-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
56 lines (56 loc) · 1.61 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
{
"name": "Telegram Forwarder Bot",
"description": "Telegram bot to forward messages automaticaly",
"keywords": [
"telegram",
"bot",
"forwarder"
],
"repository": "https://github.com/AlexStrew/tgfor",
"env": {
"ENV": {
"description": "Setting this to ANYTHING will enable env variables.",
"value": "ANYTHING"
},
"API_KEY": {
"description": "Your bot API KEY, get this value from @BotFather.",
"value": ""
},
"OWNER_ID": {
"description": "An integer of consisting of your owner ID.",
"value": "873134115"
},
"FROM_CHATS": {
"description": "List of chat id's to forward messages from.",
"required": false
},
"TO_CHATS": {
"description": "List of chat id's to forward messages to",
"required": false
},
"WEBHOOK": {
"description": "Setting this to ANYTHING will enable webhooks when in env mode messages.",
"required": false
},
"IP_ADDRESS": {
"description": "leave it 0.0.0.0 if using Heroku.",
"value": "0.0.0.0"
},
"URL": {
"description": "The URL your webhook should connect to (only needed for webhook mode).",
"value": "None"
},
"PORT": {
"description": "Port to listen on for webhooks.",
"value": "5000"
},
"CERT_PATH": {
"description": "Path to certificate file (leave it blank if you don't know).",
"required": false
},
"WORKERS": {
"description": "Number of threads to use, this depends on usage. 4 is the recommended (and default) amount, but your experience may vary.",
"value": "4"
}
}
}