-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathapp.json
More file actions
43 lines (43 loc) · 1.08 KB
/
app.json
File metadata and controls
43 lines (43 loc) · 1.08 KB
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
{
"name": "🧿 BAD STRING SESSION MANAGER 🧿",
"description": "A Telegram bot to generate Pyrogram and Telethon string sessions with extra utilities.",
"logo": "https://files.catbox.moe/ookphv.jpg",
"keywords": [
"telegram",
"bot",
"python",
"pyrogram",
"telethon",
"string-session"
],
"env": {
"API_ID": {
"description": "Telegram API ID (get from my.telegram.org)",
"required": true
},
"API_HASH": {
"description": "Telegram API HASH (get from my.telegram.org)",
"required": true
},
"BOT_TOKEN": {
"description": "Telegram Bot Token (get from @BotFather)",
"required": true
},
"OWNER_ID": {
"description": "Telegram user ID of the bot owner",
"required": true
},
"LOGGER_ID": {
"description": "Logger id (-100)",
"required": true
},
"MONGO_DB_URI": {
"description": "MongoDB connection URI",
"required": true
},
"MUST_JOIN": {
"description": "Force subscribe channel or group username (without @)",
"required": false
}
}
}