-
Notifications
You must be signed in to change notification settings - Fork 52
/
app.json
56 lines (56 loc) · 1.22 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": "String-Session-Bot",
"description": "Telegram bot to generate pyrogram string session",
"logo": "https://telegra.ph/file/7e23ca7ad0d6acea43fe0.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/Wahyu213/String-Session-Bot",
"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": true,
"value": ""
}
}
}