awesome-compose/umbraco-cms/app/umbracocms/appsettings.Development.json

41 lines
781 B
JSON
Raw Normal View History

{
"$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"
}
}
}
}