Skip to content

Commit b35f4f2

Browse files
authored
Add example for appsettings.Development JSON file
1 parent c054e13 commit b35f4f2

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
{
2+
"EmailSettings": {
3+
"SmtpServer": "smtp.gmail.com",
4+
"SmtpUserName": "youMail@where.com",
5+
"SmtpPassword": "yourPassword",
6+
"SmtpServerPort": 587,
7+
"EnableSsl": true,
8+
"EmailDisplayName": "Name",
9+
"SendersName": "Name"
10+
},
11+
"Logging": {
12+
"LogLevel": {
13+
"Default": "Information",
14+
"Microsoft.AspNetCore": "Warning"
15+
}
16+
}
17+
}

0 commit comments

Comments
 (0)