34 lines
745 B
JSON
34 lines
745 B
JSON
{
|
|
"App": {
|
|
"ReturnUrl": "http://www.example.com",
|
|
"EmailFrom": "sender@example.com",
|
|
"EmailTo": "hello@example.com",
|
|
"Host": "smtp.example.com",
|
|
"Port": 465,
|
|
"Username": "email-username",
|
|
"Password": "email-password"
|
|
},
|
|
"Serilog": {
|
|
"Using": ["Serilog.Sinks.Seq"],
|
|
"MinimumLevel": {
|
|
"Default": "Debug",
|
|
"Override": {
|
|
"Microsoft": "Warning",
|
|
"System": "Warning"
|
|
}
|
|
},
|
|
"WriteTo": [
|
|
{
|
|
"Name": "Seq",
|
|
"Args": {
|
|
"serverUrl": "http://localhost:5341",
|
|
"restrictedToMinimumLevel": "Information"
|
|
}
|
|
}
|
|
],
|
|
"Enrich": ["FromLogContext"],
|
|
"Properties": {
|
|
"ApplicationName": "Lambda.Example"
|
|
}
|
|
}
|
|
}
|