Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions .env.example
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Copy to .env and adjust per deployment.

# Directory containing streamrip's config.toml (and its downloads.db).
# Usually the streamrip default: <home>/.config/streamrip
CONFIG_DIR=/path/to/.config/streamrip

# Where downloaded music lands. Overrides config.toml's downloads.folder
# for everything started from the web GUI.
MUSIC_DIR=/path/to/music

# uid:gid that owns CONFIG_DIR and MUSIC_DIR on the host
PUID=1000
PGID=1000

# Host port for the web GUI
PORT=5002

MAX_CONCURRENT_DOWNLOADS=2
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
.env
venv/
13 changes: 13 additions & 0 deletions CLAUDE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
## Agent skills

### Issue tracker

Issues live in GitHub Issues on this repo. See `docs/agents/issue-tracker.md`.

### Triage labels

Default label vocabulary (needs-triage, needs-info, ready-for-agent, ready-for-human, wontfix). See `docs/agents/triage-labels.md`.

### Domain docs

Single-context layout — one `CONTEXT.md` + `docs/adr/` at the repo root. See `docs/agents/domain.md`.
Loading