-
Notifications
You must be signed in to change notification settings - Fork 276
/
app.json
48 lines (48 loc) · 1.23 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": "String Gen Bot",
"description": "A Telegram Bot to generate Telethon and Pyrogram String Session.",
"logo": "https://telegra.ph/file/654ddaf472f18b799600b.jpg",
"keywords": [
"python3",
"telegram",
"session",
"stringbot",
"telegram-bot",
"pyrogram",
"telethon"
],
"repository": "https://github.com/AnonymousX1025/StringGenBot",
"env": {
"API_ID": {
"description": "Get this value from https://my.telegram.org",
"value": "",
"required": true
},
"API_HASH": {
"description": "Get this value from https://my.telegram.org",
"value": "",
"required": true
},
"BOT_TOKEN": {
"description": "A Bot's token from Botfather",
"value": "",
"required": true
},
"OWNER_ID": {
"description": "Fill your user id here. (Must be integer)",
"value": "",
"required": true
},
"MONGO_DB_URI": {
"description": "Get this value from cloud.mongodb.com",
"value": "",
"required": true
}
},
"buildpacks": [
{
"url": "heroku/python"
}
],
"stack": "container"
}