-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathapp.json
51 lines (51 loc) · 1.18 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
49
50
51
{
"name": "RioChatBot",
"description": "This is just a chat bot on Telegram made from the LunaChatBot source",
"keywords": [
"telegram",
"bot",
"chat"
],
"repository": "https://github.com/RioProjectX/RioChatBot",
"env": {
"BOT_TOKEN": {
"description": "Your Bot token, Get it from @Botfather",
"required": true,
"value": ""
},
"LANGUAGE": {
"description": "The language used by the bot",
"value": "id"
},
"API_ID":{
"description": "your app id, take it from my.telegram.org",
"required": true,
"value": ""
},
"API_HASH":{
"description": "your api hash, take it from my.telegram.org",
"required": true,
"value": ""
},
"BOT_USERNAME":{
"description": "Your chat bot username",
"required": true,
"value": ""
},
"BOT_NAME":{
"description": "Name of your chat bot",
"required": true,
"value": ""
},
"MEDIA":{
"description": "Video Create a start bot",
"required": false,
"value": ""
},
"ARQ_API_KEY":{
"description": "Fill it with your arq token",
"required": true,
"value": ""
}
}
}