Files
belege-import/docker-compose.yml
T
duffyduck 337e0e99a5 Amazon Business API integration replacing browser automation
- Add amazon_api.py with Reconciliation + Document API client
- OAuth flow with manual code exchange for local installations
- Dual mode: API (recommended) or Browser automation (fallback)
- New settings: amazon_app_id, amazon_client_id, amazon_client_secret, amazon_refresh_token
- Platform UI with mode switcher, API credential fields, OAuth button
- Scheduler supports both API and browser modes
- README with full Amazon API setup guide
- httpx added for async HTTP requests

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-04-05 18:08:35 +02:00

15 lines
316 B
YAML

services:
belegimport:
build: .
container_name: belegimport
ports:
- "8081:8000"
volumes:
- ./data:/data
environment:
- DB_PATH=/data/belegimport.db
- TZ=Europe/Berlin
- LOG_LEVEL=DEBUG
- OAUTH_REDIRECT_BASE=https://hacker-net.de
restart: unless-stopped