Setup instructions

This commit is contained in:
2026-02-04 11:48:20 -07:00
parent 1dace0938a
commit a8d940b101
2 changed files with 28 additions and 1 deletions

22
README.md Normal file
View File

@@ -0,0 +1,22 @@
# Navidrome - Mopidy Playlist Sync
## Setup
Make sure your user is added to the `docker` group and whatever group owns your Mopidy playlist directory:
```
$ ls -la /var/lib/mopidy/m3u
total 24
drwxrwxr-x 2 mopidy audio 4096 Feb 4 18:22 .
drwxr-xr-x 8 mopidy audio 4096 Oct 1 18:42 ..
```
```
$ sudo usermod -aG docker tanner
$ sudo usermod -aG audio tanner
```
Configure `settings.py`.
You can either use your Navridrome password, or get the Subsonic salt and hash from the Web UI login request.

View File

@@ -1,6 +1,11 @@
MOPIDY_PLAYLIST_DIR = ''
MOPIDY_PLAYLIST_DIR = '/var/lib/mopidy/m3u'
NAVIDROME_URL = ''
NAVIDROME_USER = ''
# Set this one:
NAVIDROME_PASSWORD = ''
# or these two:
SUBSONIC_SALT = ''
SUBSONIC_TOKEN = ''