App Sync Profiles#

App sync profiles are used to set application syncing configuration with respect to an indexer.

Configure the sync profile in Buildarr:

prowlarr:
  settings:
    apps:
      sync_profiles:
        delete_unmanaged: false
        definitions:
          "Standard":
            enable_automatic_search: true
            enable_interactive_search: true
            enable_rss: true
            minimum_seeders: 1

When the sync_profile attribute on the indexer is set to the name of the sync profile, the applications connected to the indexer will respect the settings defined in the sync profile for that indexer.

For more information, refer to the guide for sync profiles on WikiArr.

delete_unmanaged: bool = False class-attribute instance-attribute #

Automatically delete indexer proxies not configured in Buildarr.

If unsure, leave set to the default value of false.

definitions: Dict[str, SyncProfile] = {} class-attribute instance-attribute #

Application sync profiles are defined here.

Configuration#

The following configuration attributes are available for an app sync profile.

enable_rss: bool = True class-attribute instance-attribute #

Enable RSS searches/queries for the connected applications.

Enable interactive (manual) searches for the connection applications.

Enable automatic searches for the connected applications.

minimum_seeders: PositiveInt = 1 class-attribute instance-attribute #

The minimum number of seeders required by the application to download a release.