Skip to main content
Version: v13.x - Umbraco 13

appsettings.config

tip

For Umbraco v.9 and v.10 all configuration lives in the appsettings.json file.

The majority of these settings will have default values that do not need to be changed.

appsettings.json
{
"uSync": {
"Settings": {
"RootFolder": "uSync/v9/",
"DefaultSet": "Default",
"ImportAtStartup": "None",
"ExportAtStartup": "None",
"ExportOnSave": "All",
"UiEnabledGroups": "All",
"ReportDebug": false,
"AddOnPing": true,
"FailOnMissingParent": false,
"CacheFolderKeys": true,
"ShowVersionCheckWarning": true,
"CustomMappings": {},
"EnableHistory": true,
"BackgroundNotifications": false,
},
"Sets": {
"Default": {
"Enabled": true,
"HandlerGroups": [],
"DisabledHandlers": [],
"HandlerDefaults": {
"Enabled": true,
"Actions": [],
"UseFlatStructure": true,
"GuidNames": false,
"FailOnMissingParent": false,
"Group": "",
"Settings": {}
},
"Handlers": {}
}
}
}
}

uSync:Settings

SettingValuesDefaultNote
RootFolderPath to folder"uSync/v9"Location in which uSync will save and read the exported files.
Default SetDefaultDefaultName of the handler set to use by default.
ImportAtStartupGroupNoneHandler groups used when importing items at startup.
ExportAtStartupGroupNoneHandler groups used when exporting items at startup.
ExportOnSaveGroupAllHandler groups whose items will be exported when changes are saved in Umbraco.
UiEnabledGroupsGroupAllHandler groups that show in the uSync dashboard.
ReportDebugTrue/falseFalseCreate a report while producing an export (debugging only).
AddOnPingTrue/falseTruePing the jumoo.co.uk website to check for addons and updates.
FailOnMissingParentTrue/FalseFalseShould an import fail if the parent of an item is missing.
CacheFolderKeysTrue/falseFalseuse a cache for the names and keys of folders during import, this increases import speeds.
ShowVersionCheckWarningTrue/falseTrueDisplay the warning box if the current import is from an older version of uSync.
CustomMappingsCustom item mappings for 3rd party or custom property editors.
EnableHistoryTrue/falseTrueEnable viewing the import and export history in the uSync dashboard.
BackgroundNotificationsTrue/FalseFalseRun all notifications on background threads to speed up import processing see Background Notifications

Group Values

Group values can be None, All or any Settings group that you have installed on your site. The default groups are 'Settings' and 'Content'.

Group values can be a combination of settings groups (but all or none will override any other groups set in a list)

Value | Note

  • | - None | No groups effectively off All | All groups, everything on Settings | Settings only (e.g Datatypes, doctypes) Content | Content only (e.g media, content) Forms | Umbraco Forms elements Users | Users and groups Members | Members and groups

uSync:Sets

SettingValuesDefaultNote
EnabledTrue/falseTrueTurn on the handler set.
HandlerGroupsList of groups[]List of handler groups to include in this set.
DisabledHandlersList of handlers[]List of handlers to disable for this set.

uSync:Sets:HandlerDefaults

Default settings for the handler, these values can be overridden for individual handlers.

SettingValuesDefaultNote
EnabledTrue/falseTrueEnable or disable the handler.
ActionsList of actions[]List of actions for which the handler is valid.
UseFlatStructureTrue/falseTrueUse a flat file structure for the file produced by the handler.
GuidNamesTrue/falseFalseShould uSync use the guid of an item as its file name. This ensures there are no clashes in names, but makes it harder to manually read what settings are in a folder.
FailOnMissingParentTrue/falseFalseShould an import fail if the parent of an item is missing.
Group""""Override the group used for a handler.
SettingsSpecific settings for each handler, this will override the defaults.

Action values

Actions values determine which 'actions' a handler fires for. The handler action value can be a combination of any of the actions below.

Action | Note

  • | - Report | Report any changes to items Import | Import items Export | Export items when started via dashboard Save | Export items on save All. | All of the above actions

The default value is all actions.

For Handler Settings, see the Handler Docs.