-
Notifications
You must be signed in to change notification settings - Fork 81
/
app.json
66 lines (66 loc) · 1.49 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
57
58
59
60
61
62
63
64
65
66
{
"name": "Instagram Downloader Bot",
"description": "Telegram bot to download instagram content",
"logo": "https://telegra.ph/file/4e8e8063cfb0de22b0161.jpg",
"keywords": [
"telegram",
"bot",
"python",
"pyrogram"
],
"buildpacks": [{
"url": "heroku/python"
}],
"formation": {
"worker": {
"quantity": 1,
"size": "free"
}
},
"addons": [
{
"options": {
"version": "12"
},
"plan": "heroku-postgresql"
}
],
"repository": "https://github.com/StarkBotsIndustries/InstagramBot",
"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": ""
},
"MUST_JOIN": {
"description": "Add username/id of a channel/group",
"required": false,
"value": ""
},
"INSTA_USERNAME": {
"description": "Get this value from my.telegram.org.",
"required": true,
"value": ""
},
"INSTA_PASSWORD": {
"description": "Get this value from my.telegram.org.",
"required": true,
"value": ""
}
}
}