commit 822c36e62272f5b0257091ad78822040bedbb439 Author: Beda Schmid Date: Tue Aug 4 22:00:17 2026 +0000 Reset history to current sanitized state diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..a36ad05 --- /dev/null +++ b/.gitignore @@ -0,0 +1,10 @@ +# BEGIN reset-history environment exclusions +.env +.env.* +*.env +*.env.* +!.env.example +!.env.*.example +!*.env.example +!*.env.*.example +# END reset-history environment exclusions diff --git a/config/app.db b/config/app.db new file mode 100644 index 0000000..c8107d5 Binary files /dev/null and b/config/app.db differ diff --git a/config/settings_config.json b/config/settings_config.json new file mode 100644 index 0000000..1790f03 --- /dev/null +++ b/config/settings_config.json @@ -0,0 +1,30 @@ +{ + "lidarr_address": "http://192.168.97.13:8686", + "lidarr_api_key": "8347ff9b18814af29af2e465f430c3e6", + "root_folder_path": "/music/", + "fallback_to_top_result": false, + "lidarr_api_timeout": 120.0, + "quality_profile_id": 2, + "metadata_profile_id": 1, + "search_for_missing_albums": false, + "dry_run_adding_to_lidarr": false, + "lidarr_monitor_option": "", + "lidarr_monitored": true, + "lidarr_albums_to_monitor": [], + "lidarr_monitor_new_items": "", + "app_name": "Sonobarr", + "app_rev": "0.10", + "app_url": "http://odoirjmrjg.com", + "last_fm_api_key": "179df45dab33c4c3f74a09ffaad57fd1", + "last_fm_api_secret": "bd223c7bf19e9f9145202b630996a15a", + "auto_start": false, + "auto_start_delay": 60.0, + "youtube_api_key": "AIzaSyAfXlTdBsvSeOK8IGQF4NNtToNtQrc3L-c", + "similar_artist_batch_size": 10, + "openai_api_key": "", + "openai_model": "", + "openai_api_base": "", + "openai_extra_headers": "", + "openai_max_seed_artists": 5, + "api_key": "" +} \ No newline at end of file diff --git a/docker-compose.yml b/docker-compose.yml new file mode 100644 index 0000000..bc8c747 --- /dev/null +++ b/docker-compose.yml @@ -0,0 +1,21 @@ +services: + sonobarr: + image: ghcr.io/dodelidoo-labs/sonobarr:latest + container_name: sonobarr + env_file: + - /srv/docker/secrets/sonobarr/.env + environment: + LIDARR_ADDRESS: http://192.168.97.13:8686 + QUALITY_PROFILE_ID: 2 + SIMILAR_ARTIST_BATCH_SIZE: 10 + volumes: + - ./config:/sonobarr/config + - /etc/localtime:/etc/localtime:ro + restart: unless-stopped + networks: + npm_proxy: + ipv4_address: 192.168.97.23 # change to an available IP on your proxy network + +networks: + npm_proxy: + external: true