forked from sbwml/alist-heroku
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
42 lines (42 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
{
"name": "Alist v2",
"description": "Alist on Heroku",
"keywords": ["Alist"],
"env": {
"ADATABASE": {
"description": "数据库类型(sqlite3 / mysql)",
"value": "sqlite3"
},
"BSQLUSER": {
"description": "MySQL 用户名(数据库类型为远程 MySQL 时需要更改)",
"value": "root"
},
"CSQLPASSWORD": {
"description": "MySQL 密码(数据库类型为远程 MySQL 时需要更改)",
"value": "123456"
},
"DSQLHOST": {
"description": "MySQL 主机地址(数据库类型为远程 MySQL 时需要更改)",
"value": "db4free.net"
},
"ESQLPORT": {
"description": "MySQL 端口(数据库类型为远程 MySQL 时需要更改)",
"value": "3306"
},
"FSQLNAME": {
"description": "MySQL 数据库名称(数据库类型为远程 MySQL 时需要更改)",
"value": "mysqldb"
},
"GEXPIRATION": {
"description": "缓存失效时间(单位:分钟)",
"value": "60"
},
"HCLEANUP_INTERVAL": {
"description": "清理失效缓存间隔",
"value": "120"
}
},
"website": "https://hub.docker.com/r/sbwml/alist",
"repository": "https://hub.docker.com/r/sbwml/alist",
"stack": "container"
}