-
Notifications
You must be signed in to change notification settings - Fork 12
/
app.json
45 lines (45 loc) · 1.21 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
{
"name": "Valeri Vot",
"description": "A Telethon based Telegram bot.",
"logo": "https://telegra.ph/file/e1e8299d68ada01e98c5a.jpg",
"keywords": [
"Telethon",
"Telegram",
"Eval",
"Shell",
"Valerina"
],
"repository": "https://github.com/Amarnathcdj/valeri",
"buildpacks": [
{
"url": "heroku/python"
}
],
"env": {
"TOKEN": {
"description": "Your bot token. Get one from @BotFather duh",
"required": true,
"value": ""
},
"API_KEY": {
"description": "Get API_KEY from my.telegram.org, used for telethon based modules.",
"required": true,
"value": ""
},
"API_HASH": {
"description": "Get API_HASH from my.telegram.org, used for telethon based modules.",
"required": true,
"value": ""
},
"OWNER_ID": {
"description": "Your user ID as an integer.",
"required": true,
"value": ""
},
"MONGO_DB": {
"description": "MongoDB Url get from mongodb",
"required": true,
"value": ""
}
}
}