forked from aspnetcorehero/Boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
appsettings.json
69 lines (68 loc) · 2.05 KB
/
appsettings.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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"UseInMemoryDatabase": false,
"ConnectionStrings": {
"ApplicationConnection": "Data Source=Server=(localdb)\\mssqllocaldb;Initial Catalog=AspNetCoreHero.Boilerplate;Integrated Security=True;MultipleActiveResultSets=True",
"IdentityConnection": "Data Source=(localdb)\\mssqllocaldb;Initial Catalog=AspNetCoreHero.Boilerplate;Integrated Security=True;MultipleActiveResultSets=True"
},
"JWTSettings": {
"Key": "C1CF4B4DC1C4177B7618DE4F55CA2",
"Issuer": "AspNetCoreHero.Boilerplate.Api",
"Audience": "AspNetCoreHero.Boilerplate.Api.User",
"DurationInMinutes": 60
},
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft": "Warning",
"Microsoft.Hosting.Lifetime": "Information"
}
},
"MailSettings": {
"From": "[email protected]",
"Host": "smtp.ethereal.email",
"Port": 587,
"UserName": "[email protected]",
"Password": "ddNKqjb5NwCwq98d5Z",
"DisplayName": "Mukesh Murugan"
},
"AllowedHosts": "*",
"Serilog": {
"MinimumLevel": {
"Default": "Information",
"Override": {
"Microsoft": "Error",
"Microsoft.Hosting.Lifetime": "Information",
"System": "Information"
}
},
"WriteTo": [
{
"Name": "Console",
"Args": {
"outputTemplate": "{Timestamp} [{Level}] {Message}{NewLine:1}"
}
},
{
"Name": "RollingFile",
"Args": {
"pathFormat": "Log\\log-{Date}.log",
"outputTemplate": "{Timestamp} [{Level}] {Message}{NewLine:1}"
}
},
{
"Name": "MSSqlServer",
"Args": {
"connectionString": "Data Source=(localdb)\\mssqllocaldb;Initial Catalog=AspNetCoreHero.Boilerplate;Integrated Security=True;MultipleActiveResultSets=True",
"tableName": "Log",
"columnOptionsSection": {
"addStandardColumns": [ "LogEvent" ],
"removeStandardColumns": [ "Properties" ]
}
}
}
],
"Properties": {
"Application": "AspNetCoreHero.Boilerplate.Api"
}
}
}