-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathappsettings.Development.json
More file actions
45 lines (45 loc) · 1.13 KB
/
appsettings.Development.json
File metadata and controls
45 lines (45 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
44
45
{
"GenerateJwt": {
"Issuer": "https://development.auth.todo-by-satrapu.com",
"Audience": "https://development.api.todo-by-satrapu.com"
},
"MiniProfiler": {
"Enabled": true
},
"MigrateDatabase": true,
"Serilog": {
"LevelSwitches": {
"$controlSwitch": "Debug"
},
"Using": [
"Serilog.Sinks.Console",
"Serilog.Sinks.Seq"
],
"WriteTo": [
{
"Name": "Console",
"Args": {
"theme": "Serilog.Sinks.SystemConsole.Themes.AnsiConsoleTheme::Code, Serilog.Sinks.Console",
"outputTemplate": "{Timestamp:HH:mm:ss.fff} {Level:u3} | cid:{ConversationId} fid:{ApplicationFlowName} tid:{ThreadId} | {SourceContext}{NewLine}{Message:lj}{NewLine}{Exception}"
}
},
{
"Name": "Seq",
"Args": {
"serverUrl": "http://localhost:5341",
"controlLevelSwitch": "$controlSwitch"
}
}
],
"Properties": {
"Application": "Todo.WebApi.Development"
}
},
"ExceptionHandling": {
"IncludeDetails": true
},
"HttpLogging": {
"Enabled": true
},
"ConfigurationDebugViewEndpointEnabled": true
}