forked from Magneto261299/shell
-
Notifications
You must be signed in to change notification settings - Fork 62
/
Copy pathapp.json
39 lines (39 loc) · 1.21 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": "Shell-Bot",
"description": "Telegram bot for executing shell commands",
"keywords": [
"telegram",
"bot",
"shell"
],
"repository": "https://github.com/magneto261290/shell-bot",
"website": "https://github.com/magneto261290/shell-bot",
"success_url": "https://github.com/magneto261290/shell-bot/blob/master/README.md",
"stack": "container",
"env": {
"BOT_TOKEN": {
"description": "Get your bot token by talking to @Botfather",
"required": true
},
"OWNER_ID": {
"description": "Your telegram ID (not username)",
"required": true
},
"RCLONE_CONFIG_BASE64": {
"description": "Your Rclone config encoded using Base64",
"required": false
},
"CREDENTIALS_LINK": {
"description": "enter permanent download link(maybe from index) of your credentials.json",
"required": false
},
"ACCOUNTS_FOLDER_LINK": {
"description": "enter permanent download link(maybe from index) of your accounts.zip",
"required": false
},
"LANG": {
"description": "Setting the encoding to UTF-8 Dont touch this",
"value": "C.UTF-8"
}
}
}