-
Notifications
You must be signed in to change notification settings - Fork 4
/
app.json
39 lines (38 loc) · 1.36 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
{
"name": "grambot",
"description": "Telgram userbot",
"repository": "https://github.com/fosslife/grambot",
"keywords": ["telethon", "telegram", "python", "userbot"],
"website": "https://github.com/fosslife/grambot",
"stack": "container",
"env": {
"apihash": {
"description": "you app API hash. get it from my.telegram.org",
"required": true
},
"apiid": {
"description": "you app API ID. get it from my.telegram.org",
"required": true
},
"string_session_key": {
"description": "your string session key. get this by running stringsession.py from repo",
"required":true
},
"openweather_api_key": {
"description": "OpenWeather key for weather plugin",
"required":false
},
"allowed_chats": {
"description": "List of chats your bot is allowed to run. this is helpful to prevent spam. space seprated list of ids. you can get these ids by .id plugin of bot",
"required":true
},
"my_name_aliases": {
"description": "your hidden eye on who is speaking your name RTFM",
"required":false
},
"wolfram_appid": {
"description": "Wolfram api id",
"required":true
}
}
}