{"id":49445362,"url":"https://github.com/darious/jamarr","last_synced_at":"2026-05-08T08:03:23.084Z","repository":{"id":354426630,"uuid":"1119169659","full_name":"darious/jamarr","owner":"darious","description":"Self-hosted music library scanner and UPnP controller with web and Android clients","archived":false,"fork":false,"pushed_at":"2026-05-08T06:05:19.000Z","size":4007,"stargazers_count":1,"open_issues_count":11,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-05-08T07:20:05.088Z","etag":null,"topics":["android","docker","fastapi","music","postgresql","self-hosted","svelte","upnp"],"latest_commit_sha":null,"homepage":null,"language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"agpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/darious.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":"SECURITY.md","support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-12-18T21:22:53.000Z","updated_at":"2026-05-08T05:55:54.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/darious/jamarr","commit_stats":null,"previous_names":["darious/jamarr"],"tags_count":4,"template":false,"template_full_name":null,"purl":"pkg:github/darious/jamarr","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/darious%2Fjamarr","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/darious%2Fjamarr/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/darious%2Fjamarr/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/darious%2Fjamarr/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/darious","download_url":"https://codeload.github.com/darious/jamarr/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/darious%2Fjamarr/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32772048,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-08T02:36:36.067Z","status":"ssl_error","status_checked_at":"2026-05-08T02:36:07.210Z","response_time":54,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["android","docker","fastapi","music","postgresql","self-hosted","svelte","upnp"],"created_at":"2026-04-29T22:01:04.729Z","updated_at":"2026-05-08T08:03:23.064Z","avatar_url":"https://github.com/darious.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Jamarr\n\n**Self-hosted web-based music controller.**\n\nScan a local music library, enrich it with metadata from MusicBrainz and Spotify, then browse and play music through a fast web UI. Supports local playback and UPnP renderers (e.g., Naim Uniti Atom) with gapless queue management.\n\n## Features\n\n- **Library scanning** — fast tag-based scan with incremental updates and MusicBrainz ID extraction\n- **Rich metadata** — artist bios, artwork, similar artists, top tracks, and external links\n- **Local + UPnP playback** — local streaming and UPnP control (play/pause/seek/volume)\n- **Gapless playback** — via UPnP SetNextAVTransportURI queue management\n- **Instant search** — across artists, albums, and tracks\n- **History + Last.fm** — local playback history with matched Last.fm scrobbles\n- **Recommendations** — artist/album/track recommendations from listening history\n- **Playlists** — create and manage playlists with ordering support\n- **Modern UI** — responsive SvelteKit interface with renderer switching\n\n## Quick Start\n\n### 1. Configure\n\n```bash\ncp .env.example .env\n```\n\nEdit `.env` and set the required values:\n\n| Variable | Description |\n|:---|:---|\n| `HOST_IP` | Your server's LAN IP (auto-detected by `deploy.sh` if left unset) |\n| `MUSIC_NFS_ADDR` | NFS server address hosting your music library |\n| `MUSIC_NFS_PATH` | NFS export path on the server |\n| `DB_DATA_PATH` | Host directory for PostgreSQL data |\n| `CACHE_PATH` | Host directory for Jamarr cache |\n| `JWT_SECRET_KEY` | Generate with `python -c \"import secrets; print(secrets.token_urlsafe(32))\"` |\n| `SPOTIFY_CLIENT_ID` / `SPOTIFY_CLIENT_SECRET` | Spotify API credentials (for metadata enrichment) |\n| `LASTFM_API_KEY` / `LASTFM_SHARED_SECRET` | Last.fm API credentials (for scrobbling) |\n\nOptional API keys for additional metadata sources: `QOBUZ_*`, `TIDAL_*`, `FANARTTV_API_KEY`.\n\nNon-secret app config (MusicBrainz URL, logging, concurrency) lives in `config.yaml`.\n\n### 2. Deploy\n\n```bash\n./deploy.sh\n```\n\nThis pulls the latest image, backs up the database, runs migrations, and restarts the stack. The container uses `network_mode: \"host\"` for UPnP device discovery.\n\n### 3. Scan your library\n\n```bash\ndocker compose run --rm jamarr uv run python -m app.scanner.cli scan\ndocker compose run --rm jamarr uv run python -m app.scanner.cli metadata\n```\n\nSee [Scanner CLI](docs/scanner.md) for full command reference.\n\n### 4. Open the UI\n\n`http://your-server-ip:8111`\n\n## Documentation\n\n| Document | Description |\n|:---|:---|\n| [Architecture \u0026 Outline](docs/outline.md) | System overview and design |\n| [Database Schema](docs/DATABASE_SCHEMA.md) | Tables, views, and indexes |\n| [Scanner CLI](docs/scanner.md) | Library scanning and metadata enrichment |\n| [API](docs/api.md) | API endpoints |\n| [Auth](docs/auth.md) | Authentication and JWT |\n| [Dev Mode](docs/DEV_MODE.md) | Development with hot-reload |\n| [Contributing](CONTRIBUTING.md) | Development setup, tests, linting |\n\n## License\n\nJamarr is licensed under the GNU Affero General Public License v3.0 only (`AGPL-3.0-only`). See [LICENSE](LICENSE).\n\nThird-party dependencies, logos, service names, and trademarks remain under their own licenses. See [THIRD_PARTY_NOTICES.md](THIRD_PARTY_NOTICES.md).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdarious%2Fjamarr","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdarious%2Fjamarr","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdarious%2Fjamarr/lists"}