-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathenvironment-parameters.json
More file actions
39 lines (38 loc) · 1.1 KB
/
environment-parameters.json
File metadata and controls
39 lines (38 loc) · 1.1 KB
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
[
{
"id":"MYSQL_ROOT_PASSWORD",
"display_name":"MySQL ROOT Password",
"type":"text",
"default_value":"changethispasswordinproductionenvironments",
"description":"ROOT Password for MySQL DB, please change for production",
"min_length": "1",
"max_length": "128"
},
{
"id":"MYSQL_DATABASE",
"display_name":"MySQL Database",
"type":"text",
"default_value":"redcap",
"description":"Database name for redcap database in MySQL",
"min_length": "1",
"max_length": "128"
},
{
"id":"MYSQL_USER",
"display_name":"MySQL Username",
"type":"text",
"default_value":"redcap",
"description":"Username for MySql",
"min_length": "1",
"max_length": "128"
},
{
"id":"MYSQL_PASSWORD",
"display_name":"MySQL Password",
"type":"text",
"default_value":"redcap4bibbox",
"description":"Password for MySQL DB, please change for production",
"min_length": "1",
"max_length": "128"
}
]