forked from daggergad7/heroku-aria-5-cloud-syncs
-
Notifications
You must be signed in to change notification settings - Fork 1
/
app.json
45 lines (45 loc) · 1.26 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
{
"name": "Heroku aria2c fork",
"description": "Run aria2c on heroku",
"repository": "https://github.com/daggergad7/heroku-aria-5-cloud-syncs",
"keywords": ["aria2c"],
"env": {
"HEROKU_APP_NAME": {
"description": "This should be the same as \"App name\" above."
},
"ARIA2C_SECRET": {
"description": "Aria2c's secret",
"value": "DEFAULT_SECRET"
},
"RCLONE_CONFIG": {
"description": "Rclone config to mount in one line, replace line breaks with \"\\n\"",
"required": false
},
"RCLONE_DESTINATION": {
"description": "Rclone destination path, format \"[drivename A]:[remove path A]",
"required": false,
"value": "Google:tmp"
},
"RCLONE_DESTINATION_2": {
"description": "Rclone destination path, format \"[drivename A]:[remove path A]\"",
"required": false
},
"RCLONE_DESTINATION_3": {
"description": "Rclone destination path, format \"[drivename A]:[remove path A]\"",
"required": false
},
"RCLONE_DESTINATION_4": {
"description": "Rclone destination path, format \"[drivename A]:[remove path A]\"",
"required": false
},
"RCLONE_DESTINATION_5": {
"description": "Rclone destination path, format \"[drivename A]:[remove path A]\"",
"required": false
}
},
"buildpacks": [
{
"url": "heroku/nodejs"
}
]
}