lambda-contact-form/test/ContactForm.Tests/appsettings.json
2018-12-12 13:51:17 +00:00

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"
}
}
}