-
Notifications
You must be signed in to change notification settings - Fork 19
/
app.json
52 lines (52 loc) · 1.27 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
{
"name": "Force Subscribing Bot",
"description": "Telegram bot to force users to subscribe a particular chat",
"logo": "https://telegra.ph/file/317f37f33c0055bfb34d6.jpg",
"keywords": [
"telegram",
"bot",
"python",
"pyrogram"
],
"buildpacks": [{
"url": "heroku/python"
}],
"addons": [
{
"plan": "heroku-postgresql"
}
],
"repository": "https://github.com/StarkBotsIndustries/ForceSubscribeBot",
"env": {
"ENVIRONMENT": {
"description": "Don't change ANYTHING.",
"required": true,
"value": "ANYTHING"
},
"API_ID": {
"description": "Get this value from my.telegram.org.",
"required": true,
"value": ""
},
"API_HASH": {
"description": "Get this value from my.telegram.org.",
"required": true,
"value": ""
},
"BOT_TOKEN": {
"description": "Obtain a Telegram bot token by contacting @BotFather",
"required": true,
"value": ""
},
"START_IMG": {
"description": "Fill Start Img url below",
"required": true,
"value": "https://te.legra.ph/file/8bbedf9bf159b4da138fd.jpg"
},
"MUST_JOIN": {
"description": "Add username/id of a channel/group",
"required": false,
"value": ""
}
}
}