Create appsettings.Development.json

This commit is contained in:
Stone_Red
2023-06-01 15:38:10 +02:00
committed by GitHub
parent 1028cbfb40
commit 90ffa46b42
@@ -0,0 +1,20 @@
{
"DetailedErrors": true,
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft.AspNetCore": "Warning"
}
},
"EmailSettings": {
"User": "<SMTP_USER>",
"Key": "<SMTP_KEY>",
"DefaultEmail": "SMTP_EMAIL_ADDRESS",
"DefaultEmail": "<SMTP_EMAIL_ADDRESS>",
"Templates": {
"DailyNotification": "../assets/DailyNotif.html"
},
"SmtpServer": "<SMTP_SERVER>",
"SmtpPort": <SMTP_PORT>
}
}