mirror of
https://github.com/calibrain/shelfmark.git
synced 2026-04-20 05:51:21 -04:00
Key changes: | Category | Lines | What it is | |--------------------------|--------|----------------------------------------------------------------------| | Docs | ~2,100 | plugin-settings.md, release-sources-plugin-guide.md, provider README | | Settings UI | ~1,650 | Modal, sidebar, field components (TextField, SelectField, etc.) | | ReleaseModal | ~1,200 | Universal mode release picker UI | | Metadata Providers | ~2,100 | Hardcover + OpenLibrary + base classes | | Core Infrastructure | ~2,150 | Cache decorator, queue, image cache, models, config | | main.py | ~1,570 | Flask routes (replaces old app.py but bigger) | | Orchestrator | ~590 | Download queue management | | Config/Settings Registry | ~1,400 | Backend settings system | | Frontend Hooks | ~750 | useSettings, useSearch, useDownloadTracking, etc. | | Other Frontend | ~500 | BookGetButton, ReleaseCell, utils | | Release Sources base | ~320 | Plugin interfaces |
18 lines
509 B
YAML
18 lines
509 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
|