Files
Umbraco-CMS/src/Umbraco.Web.UI.NetCore/appsettings.Development.json

34 lines
782 B
JSON
Raw Normal View History

2020-02-18 08:32:06 +01:00
{
"Serilog": {
"MinimumLevel": {
"Default": "Information"
},
"WriteTo": [
{
"Name": "Async",
"Args": {
"configure": [
{
"Name": "Console"
}
]
}
}
]
},
2020-08-24 14:15:53 +02:00
"Umbraco": {
"CMS": {
"Global": {
2020-08-24 14:15:53 +02:00
"Smtp": {
// "From": "your@email.here",
// "Host": "localhost",
// "Port": "25"
2020-08-24 14:15:53 +02:00
}
},
"Hosting": {
2020-08-24 14:15:53 +02:00
"Debug": true
}
}
2020-02-18 08:32:06 +01:00
}
}