forked from m4mallu/copybot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
executable file
·28 lines (28 loc) · 964 Bytes
/
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
{
"name": "Copy Bot",
"description": "A simple Media Copy Bot",
"keywords": [
"telegram",
"channel",
"copy"
],
"website": "https://github.com/m4mallu/copybot",
"repository": "https://github.com/m4mallu/copybot",
"env": {
"TG_BOT_TOKEN": {"description": "Your Bot Token obtained from @botfather", "required": true},
"API_HASH": {"description": "Your API Hash obtained from my.telegram.org", "required": true},
"CHANNEL_ID": {"description": "Your destination Channel Id, add -100 prefix", "required": true},
"ENV": {"description": "Set this to ANYTHING", "value": "ANYTHING"},
"APP_ID": {"description": "Your APP ID obtained from my.telegram.org", "required": true}
},
"buildpacks": [
{"url": "heroku/python"}
],
"formation": {
"worker": {
"quantity": 1,
"size": "free"
}
},
"stack": "heroku-20"
}