forked from hostitor/HerokuShell-Rclone
-
Notifications
You must be signed in to change notification settings - Fork 64
/
app.json
46 lines (46 loc) · 1.15 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
{
"name": "HerokuShell Rclone",
"description": "Bot to interface Heroku shell through Telegram (with Rclone)",
"keywords": [
"telegram",
"shell",
"rclone",
"heroku"
],
"repository": "https://github.com/eliasbenb/HerokuShell-Rclone.git",
"env": {
"BOT_TOKEN": {
"description": "The bot token provided by @BotFather",
"required": true
},
"OWNER_ID": {
"description": "Your Telegram user ID, get it from @userinfobot",
"value": "00000",
"required": true
},
"RCLONE_CONFIG_BASE64": {
"description": "Your Rclone config encoded using Base64",
"required": false
}
},
"buildpacks": [
{
"url": "heroku/nodejs"
},
{
"url": "heroku/python"
},
{
"url": "https://github.com/jonathanong/heroku-buildpack-ffmpeg-latest.git"
},
{
"url": "https://github.com/opendoor-labs/heroku-buildpack-p7zip.git"
},
{
"url": "https://github.com/heroku/heroku-buildpack-apt.git"
},
{
"url": "https://github.com/magneto261290/megatools-heroku-buildpack"
}
]
}