mirror of
https://github.com/calibrain/shelfmark.git
synced 2026-02-20 07:46:18 -05:00
- Prowlarr: Added automatic fallback to search without category filter when indexers return no results with book category (7000), improving compatibility with indexers that don't support category filtering - Prowlarr: Hide language filter in UI since Prowlarr has unreliable language metadata - Bypass: Refactored internal bypasser with code cleanup, extracted helper functions, and added health check capability - Bypass: Added fingerprint module for screen size handling - qBittorrent: Fixed connection test to use web API version instead of app version - Frontend: Added supported_filters config to control which filters display per source - Auth: Improved CWA database path validation (now uses Path object properly)
21 lines
686 B
YAML
21 lines
686 B
YAML
# Local development - builds from source with debug enabled
|
|
services:
|
|
calibre-web-automated-book-downloader-dev:
|
|
extends:
|
|
file: ./docker-compose.yml
|
|
service: calibre-web-automated-book-downloader
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile
|
|
target: cwa-bd
|
|
environment:
|
|
DEBUG: true
|
|
volumes:
|
|
- ./.local/config:/config
|
|
- ./.local/ingest:/cwa-book-ingest
|
|
- ./.local/log:/var/log/cwa-book-downloader
|
|
- ./.local/tmp:/tmp/cwa-book-downloader
|
|
- ./cwa_book_downloader:/app/cwa_book_downloader:ro
|
|
# Download client mount (must match your torrent/usenet client's volume)
|
|
# - /path/to/downloads:/downloads
|