-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
47 lines (47 loc) · 1.34 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
{
"name": "Gavesh Bimsath's Assistant",
"description": "Simple Feedback bot for Telegram",
"repository": "https://github.com/gbimsath/Telegram-feedback-bot",
"logo": "https://telegra.ph/file/5b7032c04e994f5319e07.jpg",
"keywords": [
"python3",
"telegram",
"pmbot",
"pyrogram"
],
"stack": "container",
"env": {
"BOT_TOKEN": {
"description": "Telegram bot token get it from @BotFather",
"required": true
},
"API_ID": {
"description": "API_ID of your Telegram Account my.telegram.org/apps",
"required": true
},
"API_HASH": {
"description": "API_HASH of your Telegram Account my.telegram.org/apps",
"required": true
},
"BOT_OWNER": {
"description": "Your Telegram Id",
"required": true
},
"OWNER": {
"description": "Also fill this with Your Telegram Id",
"required": true
},
"BOT_USERNAME": {
"description": "Your Bot User Name",
"required": true
},
"MONGODB_URI": {
"description": "Mongodb database URI",
"required": true
},
"LOG_CHANNEL": {
"description": "User Log Group Id",
"required": true
}
}
}