-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathapp.json
48 lines (48 loc) · 1.17 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": "PyroX",
"description": "Telegram User Bot using Pyrogram framework",
"logo": "https://graph.org/file/d2378d747050e2963b95a.jpg",
"repository": "https://github.com/nandhaxd/katsuki",
"env": {
"API_ID": {
"description": "API ID obtained from my.telegram.org/apps",
"value": "",
"required": true
},
"API_HASH": {
"description": "API Hash obtained from my.telegram.org/apps",
"value": "",
"required": true
},
"SESSION": {
"description": "Pyrogram String Session",
"value": "",
"required": true
},
"TOKEN": {
"description": "Create your bot in @BotFather",
"value": "",
"required": true
},
"MONGO_URI": {
"description": "MongoDB database URL",
"value": "",
"required": true
},
"GROUP_ID": {
"description": "Private log chat ID",
"value": "",
"required": true
},
"LOG_CHAT": {
"description": "Private log chat ID (same as GROUP_ID)",
"value": "",
"required": true
},
"BOTUSERNAME": {
"description": "Put here bot username without @",
"value": "",
"required": true
}
}
}