* Simplify JSON schema and only generate appsettings-schema.Umbraco.Cms.json * Use Umbraco.JsonSchema.Extensions to dynamically add JSON schema references * Move DependentUpon items to shared MSBuild props * Update LangVersion to latest * Update Umbraco.GitVersioning.Extensions to 0.2.0 * Remove JSON schemas on clean * Remove Umbraco.JsonSchema.Core project * Fix JSON schema nullability * Ignore additional JSON schema files in template * Update CompatibilitySuppressions.xml * Remove GlobalSettings.UmbracoPath from JSON schema again * Remove RemoveUmbracoJsonSchemaFiles target * Update Umbraco.JsonSchema.Extensions to 0.2.0 and add weights * Flatten generated JSON schema hierarchy * Remove LicensesSettings from CMS codebase * Change AdditionalParameters to IDictionary
75 lines
1.9 KiB
JSON
75 lines
1.9 KiB
JSON
{
|
|
"$schema": "appsettings-schema.json",
|
|
"ConnectionStrings": {
|
|
"umbracoDbDSN": ""
|
|
},
|
|
"Serilog": {
|
|
"MinimumLevel": {
|
|
"Default": "Information",
|
|
"Override": {
|
|
"Microsoft": "Warning",
|
|
"Microsoft.Hosting.Lifetime": "Information",
|
|
"System": "Warning"
|
|
}
|
|
}
|
|
},
|
|
"Umbraco": {
|
|
"CMS": {
|
|
"Content": {
|
|
"Notifications": {
|
|
"Email": "your@email.here"
|
|
},
|
|
"MacroErrors": "Throw"
|
|
},
|
|
"Global": {
|
|
"DefaultUILanguage": "en-us",
|
|
"HideTopLevelNodeFromPath": true,
|
|
"TimeOutInMinutes": 20,
|
|
"UseHttps": false
|
|
},
|
|
"Hosting": {
|
|
"Debug": false
|
|
},
|
|
"KeepAlive": {
|
|
"DisableKeepAliveTask": false,
|
|
"KeepAlivePingUrl": "~/api/keepalive/ping"
|
|
},
|
|
"RequestHandler": {
|
|
"ConvertUrlsToAscii": "try"
|
|
},
|
|
"RuntimeMinification": {
|
|
"dataFolder": "umbraco/Data/TEMP/Smidge",
|
|
"version": "637642136775050602"
|
|
},
|
|
"Security": {
|
|
"KeepUserLoggedIn": false,
|
|
"UsernameIsEmail": true,
|
|
"HideDisabledUsersInBackoffice": false,
|
|
"AllowedUserNameCharacters": "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789-._@+\\",
|
|
"UserPassword": {
|
|
"RequiredLength": 10,
|
|
"RequireNonLetterOrDigit": false,
|
|
"RequireDigit": false,
|
|
"RequireLowercase": false,
|
|
"RequireUppercase": false,
|
|
"MaxFailedAccessAttemptsBeforeLockout": 5
|
|
},
|
|
"MemberPassword": {
|
|
"RequiredLength": 10,
|
|
"RequireNonLetterOrDigit": false,
|
|
"RequireDigit": false,
|
|
"RequireLowercase": false,
|
|
"RequireUppercase": false,
|
|
"MaxFailedAccessAttemptsBeforeLockout": 5
|
|
}
|
|
},
|
|
"Tours": {
|
|
"EnableTours": true
|
|
},
|
|
"ModelsBuilder": {
|
|
"ModelsMode": "InMemoryAuto"
|
|
}
|
|
}
|
|
}
|
|
}
|