925c7c3703
- Add clap for CLI argument parsing (-c config, -p port)
- Add health endpoint showing service status at /api/health
- Add IndexerType enum for auto URL construction (jackett/prowlarr/torznab)
- Fix Axum 0.8 route syntax ({param} instead of :param)
- Fix torznab search to use 'q' param instead of artist/album (Jackett only supports q)
21 lines
407 B
YAML
21 lines
407 B
YAML
app:
|
|
port: 3000
|
|
|
|
database:
|
|
url: "postgresql://music:music@localhost:5433/music_aggregator"
|
|
|
|
metadata:
|
|
endpoint: "http://localhost:50051"
|
|
|
|
indexers:
|
|
- name: "Jackett"
|
|
indexer_type: jackett # jackett, prowlarr, or torznab
|
|
url: "http://localhost:9117"
|
|
api_key: "your-jackett-api-key"
|
|
|
|
torrent:
|
|
qbittorrent:
|
|
url: "http://localhost:8080"
|
|
username: "admin"
|
|
password: "changeme"
|