41 lines
781 B
JSON
41 lines
781 B
JSON
{
|
|
"$schema": "./appsettings-schema.json",
|
|
"Serilog": {
|
|
"MinimumLevel": {
|
|
"Default": "Information"
|
|
},
|
|
"WriteTo": [
|
|
{
|
|
"Name": "Async",
|
|
"Args": {
|
|
"configure": [
|
|
{
|
|
"Name": "Console"
|
|
}
|
|
]
|
|
}
|
|
}
|
|
]
|
|
},
|
|
"Umbraco": {
|
|
"CMS": {
|
|
"Unattended": {
|
|
"InstallUnattended": true,
|
|
"UnattendedUserName": "Umbraco Demo",
|
|
"UnattendedUserEmail": "hello@umbraco.com",
|
|
"UnattendedUserPassword": "1234567890"
|
|
},
|
|
"Content": {
|
|
"MacroErrors": "Throw"
|
|
},
|
|
"Hosting": {
|
|
"Debug": true
|
|
},
|
|
"RuntimeMinification": {
|
|
"UseInMemoryCache": true,
|
|
"CacheBuster": "Timestamp"
|
|
}
|
|
}
|
|
}
|
|
}
|