forked from m4mallu/multi-channel-forward-bot
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathapp.json
executable file
·40 lines (40 loc) · 1.88 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
{
"name": "multi-channel-forward-bot",
"description": "A simple Message Forwarder Bot to custom channels",
"keywords": [
"telegram",
"multiple",
"channel",
"forward",
"robot"
],
"website": "https://github.com/m4mallu/multi-channel-forward-bot",
"repository": "https://github.com/m4mallu/multi-channel-forward-bot",
"env": {
"TG_BOT_TOKEN": {"description": "Your Bot Token", "required": true},
"APP_ID": {"description": "Your APP ID", "required": true},
"API_HASH": {"description": "Your API Hash", "required": true},
"AUTH_USERS": {"description": "Auth users of your bot make space in between multiples", "required": true},
"CHANNEL1_ID": {"description": "Your Channel1 Id start with -100", "required": true},
"CHANNEL1_NAME": {"description": "Enter the channel1 name", "required": true},
"CHANNEL2_ID": {"description": "Your Channel2 Id start with -100", "required": false},
"CHANNEL2_NAME": {"description": "Enter the channel2 name", "required": false},
"CHANNEL3_ID": {"description": "Your Channel3 Id start with -100", "required": false},
"CHANNEL3_NAME": {"description": "Enter the channel3 name", "required": false},
"CHANNEL4_ID": {"description": "Your Channel4 Id start with -100", "required": false},
"CHANNEL4_NAME": {"description": "Enter the channel4 name", "required": false},
"CHANNEL5_ID": {"description": "Your Channel5 Id start with -100", "required": false},
"CHANNEL5_NAME": {"description": "Enter the channel5 name", "required": false},
"ENV": {"description": "Set this to ANYTHING","value": "ANYTHING"}
},
"buildpacks": [
{"url": "heroku/python"}
],
"formation": {
"worker": {
"quantity": 1,
"size": "free"
}
},
"stack": "heroku-20"
}