forked from zeinn1/StringGenBot
-
Notifications
You must be signed in to change notification settings - Fork 1
/
app.json
42 lines (42 loc) · 1.16 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
{
"name": "sᴛʀɪɴɢ sᴇssɪᴏɴ ɢᴇɴᴇʀᴀᴛᴏʀ",
"description": "A Telegram Bot to generate Telethon and Pyrogram String Sessions.",
"logo": "https://telegra.ph/file/9f31b3a61c4897b297a33.jpg",
"keywords": [
"telegram",
"bot",
"python",
"pyrogram"
],
"env": {
"BOT_TOKEN": {
"description": "Get this value from @BotFather",
"required": true
},
"MUST_JOIN": {
"description": "Username of a group or channel for which you want to set force sub.(without @)",
"required": true
},
"MONGO_URL": {
"description": "mongo db url here",
"required": true
},
"API_ID": {
"description": "telegram api id here",
"required": true
},
"OWNER_ID": {
"description": "Telegram id of the person who will known as owner of the bot.",
"required": true
},
"API_HASH": {
"description": "telegram api hash here",
"required": true
}
},
"addons": [
{
"plan": "heroku-postgresql"
}
]
}