Files
Umbraco-CMS/templates/UmbracoProject/appsettings.Development.json

55 lines
1.2 KiB
JSON
Raw Normal View History

{
2022-02-23 23:20:13 +01:00
"$schema": "./umbraco/config/appsettings-schema.json",
"Serilog": {
"MinimumLevel": {
"Default": "Information"
},
"WriteTo": [
{
"Name": "Async",
"Args": {
"configure": [
{
"Name": "Console"
}
]
}
}
]
},
//#if (HasConnectionString)
"ConnectionStrings": {
2022-02-23 23:20:13 +01:00
"umbracoDbDSN": "CONNECTION_STRING_FROM_TEMPLATE"
},
//#endif
"Umbraco": {
"CMS": {
//#if (UsingUnattenedInstall)
"Unattended": {
"InstallUnattended": true,
2022-02-23 23:20:13 +01:00
"UnattendedUserName": "UNATTENDED_USER_NAME_FROM_TEMPLATE",
"UnattendedUserEmail": "UNATTENDED_USER_EMAIL_FROM_TEMPLATE",
"UnattendedUserPassword": "UNATTENDED_USER_PASSWORD_FROM_TEMPLATE"
},
//#endif
2022-02-23 23:20:13 +01:00
"Content": {
"MacroErrors": "Throw"
},
"Global": {
"Smtp": {
"From": "your@email.here",
"Host": "localhost",
"Port": 25
}
},
"Hosting": {
"Debug": true
},
"RuntimeMinification": {
"useInMemoryCache": true,
"cacheBuster": "Timestamp"
}
}
}
2022-02-23 23:20:13 +01:00
}