-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfiguration.json
46 lines (46 loc) · 1.16 KB
/
configuration.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
[
{
"key": "server",
"type": "input",
"defaultValue": "",
"templateOptions": {
"label": "SQL Server",
"placeholder": "tcp:[namehere].database.windows.net,1433",
"description": "Please add a SQL server to connect with",
"required": true
}
},
{
"key": "database",
"type": "input",
"defaultValue": "",
"templateOptions": {
"label": "SQL Database",
"placeholder": "Please enter Database name",
"description": "Please add a SQL database to connect with",
"required": true
}
},
{
"key": "user",
"type": "input",
"defaultValue": "",
"templateOptions": {
"label": "SQL User",
"placeholder": "Please enter SQL User",
"description": "Please add a SQL user to connect with",
"required": true
}
},
{
"key": "password",
"type": "input",
"defaultValue": "",
"templateOptions": {
"label": "Please add a SQL user password to connect with",
"type": "password",
"placeholder": "Please enter a password",
"required": true
}
}
]