forked from libDrive/heroku
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
57 lines (57 loc) · 2.67 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
52
53
54
55
56
57
{
"name": "libDrive",
"description": "libDrive is a Google Drive media library manager and indexer, similar to Plex, that organizes Google Drive media to offer an intuitive and user-friendly experience.",
"keywords": [
"heroku",
"movies",
"plex",
"google-drive",
"tv",
"indexing",
"indexer",
"drive",
"index",
"gdrive",
"cloudflare-workers",
"goindex",
"gindex",
"libdrive"
],
"website": "https://github.com/libDrive/libDrive",
"repository": "https://github.com/cespa92/heroku",
"logo": "https://avatars2.githubusercontent.com/u/75073550?v=4",
"success_url": "/",
"env": {
"LIBDRIVE_CLOUD": {
"description": "The ID of any empty Google Drive folder. This folder will be used to store the config and metadata generated by libDrive",
"value": "",
"required": false
},
"LIBDRIVE_CONFIG": {
"description": "Create this through the config generator: https://config.libdrive.tk. Make sure to read the meaning of each variable on the wiki: https://github.com/libDrive/libDrive/wiki/Config",
"value": "{\r\n \"access_token\": \"\",\r\n \"account_list\": [],\r\n \"arcio\": \"dev\",\r\n \"auth\": true,\r\n \"build_interval\": 120,\r\n \"build_type\": \"hybrid\",\r\n \"category_list\": [],\r\n \"client_id\": \"\",\r\n \"client_secret\": \"\",\r\n \"cloudflare\": \"\",\r\n \"refresh_token\": \"\",\r\n \"secret_key\": \"\",\r\n \"tmdb_api_key\": \"\",\r\n \"token_expiry\": \"\",\r\n \"prefer_mkv\": false,\r\n \"prefer_mp4\": false,\r\n \"transcoded\": false,\r\n \"service_accounts\": [],\r\n \"subtitles\": false,\r\n \"signup\": false,\r\n \"ui_config\": {}\r\n}",
"required": true
},
"LIBDRIVE_VERSION": {
"description": "The version to deploy (e.g. v1.3.10). 'latest' and 'dev' are also accepted, 'latest' automatically updates libDrive on each restart. 'dev' builds libDrive using the latest commit, this will only be built once, on the first deploy",
"value": "latest",
"required": false
},
"PINGER": {
"description": "The pinger pings your app every 15 minutes to prevent it from sleeping. Input the URL of your app (e.g. https://APP_NAME.herokuapp.com). Leave empty if you don't want to use the pinger",
"value": "https://APP_NAME.herokuapp.com",
"required": false
},
"PINGER_INTERVAL": {
"description": "How often, in seconds, the pinger will be used",
"value": "900",
"required": false
},
"WEB_CONCURRENCY": {
"description": "Don't change this, leave the value as 1",
"value": "1",
"required": true
}
},
"stack": "container"
}