Configuration Overview¶
DecyphArr uses a JSON configuration file to manage its settings. This file should be named config.json and placed in your configured directory.
Basic Configuration¶
Here's a minimal configuration to get started:
{
"debrids": [
{
"name": "realdebrid",
"host": "https://api.real-debrid.com/rest/1.0",
"api_key": "realdebrid_key",
"folder": "/mnt/remote/realdebrid/__all__/"
}
],
"qbittorrent": {
"port": "8282",
"download_folder": "/mnt/symlinks/",
"categories": ["sonarr", "radarr"]
},
"repair": {
"enabled": false,
"interval": "12h",
"run_on_start": false
},
"use_auth": false,
"log_level": "info"
}
Configuration Sections¶
DecyphArr's configuration is divided into several sections:
- General Configuration - Basic settings like logging and authentication
- Debrid Providers - Configure one or more Debrid services
- qBittorrent Settings - Settings for the qBittorrent API
- Arr Integration - Configuration for Sonarr, Radarr, etc.
Full Configuration Example For a complete configuration file with all available options, see our full configuration example.