forked from hjohnson12/Kanban-Tasker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathEndPoints.json
43 lines (40 loc) · 1.13 KB
/
EndPoints.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
{
"EndPointConfigurations": [
{
"Name": "Kanban_SQLServer",
"IsActive": "false",
"API_Name": "Kanban",
"Preference": "10",
"EndPointType": "DBMS",
"ProviderName": "MSSQL",
"ConnectionString": "Data Source=.\\SQLEXPRESS;Initial Catalog=KanbanTasker;Integrated Security=SSPI;MultipleActiveResultSets=True;"
},
{
"Name": "Kanban_MySQL",
"IsActive": "false",
"API_Name": "Kanban",
"Preference": "20",
"EndPointType": "DBMS",
"ProviderName": "MySQL",
"ConnectionString": "Server=localhost;Database=KanbanTasker;Uid={MySQL_UserName};Pwd={MySQL_Password};SslMode=none"
},
{
"Name": "Kanban_SQLite",
"IsActive": "true",
"API_Name": "Kanban",
"Preference": "30",
"EndPointType": "DBMS",
"ProviderName": "SQLite",
"ConnectionString": "Filename=ktdatabase.db"
},
{
"Name": "Kanban_WebAPI",
"IsActive": "false",
"API_Name": "Kanban",
"Preference": "100",
"EndPointType": "HTTP",
"ProviderName": "WebAPI",
"ConnectionString": "http://localhost:5000/api/"
}
]
}