-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathappsettings.json
More file actions
27 lines (27 loc) · 879 Bytes
/
appsettings.json
File metadata and controls
27 lines (27 loc) · 879 Bytes
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
{
"Logging": {
"LogLevel": {
"Default": "Warning"
}
},
"AllowedHosts": "*",
"CORSSettings": {
"AllowOrigin": "http://localhost, http://localhost:52595"
},
//To switch to this DAL, rename as DalSettings
"DalSettings.ORACLE": {
"Assembly": "DAL.Oracle",
"ConnectionString": "User Id=ABCD;Password=ABCD;Data Source=( DESCRIPTION = (ADDRESS = (PROTOCOL = TCP)(HOST = test.local)(PORT = 1521)) (CONNECT_DATA = (SERVICE_NAME = DEVTEST)) );",
"ContextEndsWith": "Context",
"RepositoryEndsWith": "Repository"
},
"DalSettings": {
"Assembly": "DAL.MSSQL",
"ConnectionString": "Data Source=localhost\\SQL2016;Initial Catalog=testDB;user=ABCD; password=ABCD",
"ContextEndsWith": "Context",
"RepositoryEndsWith": "Repository"
},
"ServicesSettings": {
"Assembly": "Business.Services"
}
}