-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathappsettings.json
More file actions
32 lines (30 loc) · 847 Bytes
/
appsettings.json
File metadata and controls
32 lines (30 loc) · 847 Bytes
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
{
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft.AspNetCore": "Warning",
"NotificationWebsite.Controllers": "Information",
"NotificationWebsite.Services": "Information"
},
"Console": {
"LogLevel": {
"NotificationWebsite.Controllers": "Information",
"NotificationWebsite.Services" : "Information"
}
}
},
"EmailSettings": {
"DefaultFromEmail": "notification_sender@gmail.com",
"SMTPSettings:Host": "smtp.gmail.com",
"Port": "587",
"UserName": "enter your gmail username",
"Password": "enter your gmail app password"
},
"NotificationEmailSettings": {
"RelativePath": "\\Pages\\Templates\\",
"GreetTemplate": "Greeting.cshtml",
"RemindTemplate": "Notification.cshtml",
"Cron": "* * * * *"
},
"AllowedHosts": "*"
}