forked from AlistGo/alist-heroku-postgres
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
28 lines (28 loc) · 805 Bytes
/
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
{
"name": "Alist v2",
"description": "Alist on Heroku",
"keywords": ["Alist"],
"env": {
"CACHE_EXPIRATION": {
"description": "Cache invalidation time (unit: minutes)",
"value": "60"
},
"CLEANUP_INTERVAL": {
"description": "Clear the invalidation cache interval",
"value": "120"
},
"ASSETS": {
"description": "static resources(refer to https://alist-doc.nn.ci/en/docs/setting/config#assets)",
"value": "https://npm.elemecdn.com/alist-web@$version/dist/"
}
},
"addons": [
{
"plan": "heroku-postgresql"
}
],
"website": "https://github.com/Xhofe/alist",
"repository": "https://github.com/alist-org/alist-heroku-postgres",
"logo": "https://cdn.jsdelivr.net/gh/alist-org/logo@main/logo.svg",
"stack": "container"
}