-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathappsettings.Development.json
More file actions
43 lines (43 loc) · 1.13 KB
/
appsettings.Development.json
File metadata and controls
43 lines (43 loc) · 1.13 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
40
41
42
43
{
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft.AspNetCore": "Warning",
"Microsoft.EntityFrameworkCore": "Information"
}
},
"Serilog": {
"MinimumLevel": {
"Default": "Debug",
"Override": {
"Microsoft.AspNetCore": "Warning",
"Microsoft.EntityFrameworkCore.Database.Command": "Warning"
}
},
"WriteTo": [
{
"Name": "Console",
"Args": {
"theme": "Serilog.Sinks.SystemConsole.Themes.AnsiConsoleTheme::Code, Serilog.Sinks.Console"
}
},
{
"Name": "File",
"Args": {
"path": "logs/development-.log",
"rollingInterval": "Day",
"retainedFileCountLimit": 7
}
}
]
},
"ConnectionStrings": {
"DefaultConnection": "Server=(localdb)\\mssqllocaldb;Database=SOLIDTemplate_Dev;Trusted_Connection=true;MultipleActiveResultSets=true;"
},
"UseInMemoryDatabase": true,
"AllowedHosts": "*",
"CORS": {
"AllowedOrigins": ["http://localhost:3000", "http://localhost:4200", "https://localhost:3000", "https://localhost:4200"],
"AllowAnyOrigin": true
}
}