-
Notifications
You must be signed in to change notification settings - Fork 11
/
app.json
48 lines (48 loc) · 1.2 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
{
"name": "AfkRobot AFK Bot",
"description": "Simple and Powerful Telegram's AFK Bot written in Pyrogram using MongoDB.",
"logo": "https://telegra.ph/file/78bc88b883b22024002cd.jpg",
"keywords": [
"AfkRobot",
"mongodb",
"python",
"pyrogram"
],
"buildpacks": [{
"url": "heroku/python"
}],
"formation": {
"worker": {
"quantity": 1,
"size": "eco"
}
},
"repository": "https://github.com/RocksKrishnaBot/AfkRobot",
"env": {
"API_ID": {
"description": "Get this value from my.telegram.org/apps.",
"required": true,
"value": ""
},
"API_HASH": {
"description": "Get this value from my.telegram.org/apps.",
"required": true,
"value": ""
},
"BOT_TOKEN": {
"description": "A Bot token from @BotFather",
"required": true,
"value": ""
},
"MONGO_DB_URI": {
"description": "Get a mongodb url from https://cloud.mongodb.com.",
"required": true,
"value": ""
},
"SUDO_USER": {
"description": "The user id(s) of user(s) whom you would like to add as a SUDO_USER, Multiple values shall be seperated with a space.",
"required": true,
"value": ""
}
}
}