forked from bibbox/app-phenotips
-
Notifications
You must be signed in to change notification settings - Fork 0
/
environment-parameters.json
37 lines (37 loc) · 1.04 KB
/
environment-parameters.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
[{
"id": "MYSQL_ROOT_PASSWORD",
"display_name": "mySQL root password",
"description": "root password of the mySQL database, only visible within the container, can be a short, medium secure password",
"default_value": "",
"type": "PASSWORD",
"visible": "YES",
"min_length": "1",
"max_length": "128"
}, {
"id": "MYSQL_DATABASE",
"display_name": "mySQL database name",
"description": "mySQL database name for phenotips",
"default_value": "phenotips",
"type": "STRING",
"visible": "YES",
"min_length": "1",
"max_length": "128"
}, {
"id": "MYSQL_USER",
"display_name": "mySQL user",
"description": "name of mySQL user for the phenotips DB",
"default_value": "phenotips",
"type": "STRING",
"visible": "YES",
"min_length": "1",
"max_length": "128"
}, {
"id": "MYSQL_PASSWORD",
"display_name": "mySQL root password",
"description": "user password of the mySQL database, only visible within the container, can be a short, medium secure password",
"default_value": "",
"type": "PASSWORD",
"visible": "YES",
"min_length": "1",
"max_length": "128"
}]