Update soulsync.xml
This commit is contained in:
parent
c7e943034d
commit
eebe035274
1 changed files with 8 additions and 5 deletions
|
|
@ -9,12 +9,12 @@
|
|||
<Privileged>false</Privileged>
|
||||
<Support>https://github.com/Nezreka/SoulSync/issues</Support>
|
||||
<Project>https://github.com/Nezreka/SoulSync</Project>
|
||||
<Overview>Automated music discovery and collection manager. Sync Spotify/Tidal/YouTube playlists to Plex/Jellyfin via Soulseek with FLAC priority, metadata enhancement, and smart matching. Bridge the gap between streaming services and your local music library.</Overview>
|
||||
<Overview>Automated music discovery and collection manager. Sync Spotify/Tidal/YouTube playlists to Plex/Jellyfin/Navidrome via Soulseek with FLAC priority, customizable file organization templates, metadata enhancement, and smart matching. Features include wishlist management, artist watchlist, intelligent discovery playlists, and automatic lyrics integration.</Overview>
|
||||
<Category>MediaApp:Music</Category>
|
||||
<WebUI>http://[IP]:[PORT:8008]</WebUI>
|
||||
<TemplateURL>https://raw.githubusercontent.com/Nezreka/SoulSync/main/templates/soulsync.xml</TemplateURL>
|
||||
<Icon>https://raw.githubusercontent.com/Nezreka/SoulSync/main/assets/trans.png</Icon>
|
||||
<ExtraParams>--restart unless-stopped</ExtraParams>
|
||||
<ExtraParams>--restart unless-stopped --add-host=host.docker.internal:host-gateway</ExtraParams>
|
||||
<PostArgs/>
|
||||
<CPUset/>
|
||||
<DateInstalled>1704067200</DateInstalled>
|
||||
|
|
@ -24,10 +24,13 @@
|
|||
<Config Name="WebUI Port" Target="8008" Default="8008" Mode="tcp" Description="Web interface port" Type="Port" Display="always" Required="true" Mask="false">8008</Config>
|
||||
<Config Name="Spotify OAuth Port" Target="8888" Default="8888" Mode="tcp" Description="Spotify OAuth callback port" Type="Port" Display="always" Required="true" Mask="false">8888</Config>
|
||||
<Config Name="Tidal OAuth Port" Target="8889" Default="8889" Mode="tcp" Description="Tidal OAuth callback port" Type="Port" Display="always" Required="true" Mask="false">8889</Config>
|
||||
<Config Name="Config File" Target="/app/config/config.json" Default="/mnt/user/appdata/soulsync/config.json" Mode="rw" Description="SoulSync configuration file - mount only the config.json file" Type="Path" Display="always" Required="true" Mask="false">/mnt/user/appdata/soulsync/config.json</Config>
|
||||
<Config Name="Database Directory" Target="/app/data" Default="/mnt/user/appdata/soulsync/database" Mode="rw" Description="Database storage - DO NOT mount to /app/database (contains Python modules)" Type="Path" Display="always" Required="true" Mask="false">/mnt/user/appdata/soulsync/database</Config>
|
||||
<Config Name="Config Directory" Target="/app/config" Default="/mnt/user/appdata/soulsync/config" Mode="rw" Description="SoulSync configuration directory (stores config.json and settings)" Type="Path" Display="always" Required="true" Mask="false">/mnt/user/appdata/soulsync/config</Config>
|
||||
<Config Name="Database Directory" Target="/app/database" Default="/mnt/user/appdata/soulsync/database" Mode="rw" Description="Database storage (SQLite files and library cache)" Type="Path" Display="always" Required="true" Mask="false">/mnt/user/appdata/soulsync/database</Config>
|
||||
<Config Name="Logs Directory" Target="/app/logs" Default="/mnt/user/appdata/soulsync/logs" Mode="rw" Description="Application logs storage" Type="Path" Display="always" Required="true" Mask="false">/mnt/user/appdata/soulsync/logs</Config>
|
||||
<Config Name="Music Share" Target="/host/music" Default="/mnt/user/Music" Mode="rw" Description="Your music share containing Downloads and Library folders for slskd integration" Type="Path" Display="always" Required="true" Mask="false">/mnt/user/Music</Config>
|
||||
<Config Name="Music Share" Target="/host/music" Default="/mnt/user/Music" Mode="rw" Description="Mount your music share (containing slskd downloads and music library). Use /host/music/Downloads and /host/music/Library in settings." Type="Path" Display="always" Required="true" Mask="false">/mnt/user/Music</Config>
|
||||
<Config Name="Timezone" Target="TZ" Default="America/New_York" Mode="" Description="Container timezone (e.g., America/New_York, Europe/London)" Type="Variable" Display="always" Required="false" Mask="false">America/New_York</Config>
|
||||
<Config Name="User ID" Target="PUID" Default="99" Mode="" Description="User ID for file permissions (typically 99 for Unraid)" Type="Variable" Display="advanced" Required="false" Mask="false">99</Config>
|
||||
<Config Name="Group ID" Target="PGID" Default="100" Mode="" Description="Group ID for file permissions (typically 100 for Unraid)" Type="Variable" Display="advanced" Required="false" Mask="false">100</Config>
|
||||
<Config Name="PYTHONPATH" Target="PYTHONPATH" Default="/app" Mode="" Description="Python path (do not change)" Type="Variable" Display="advanced" Required="true" Mask="false">/app</Config>
|
||||
<Config Name="FLASK_ENV" Target="FLASK_ENV" Default="production" Mode="" Description="Flask environment (do not change)" Type="Variable" Display="advanced" Required="true" Mask="false">production</Config>
|
||||
<Config Name="FLASK_APP" Target="FLASK_APP" Default="web_server.py" Mode="" Description="Flask app entry point (do not change)" Type="Variable" Display="advanced" Required="true" Mask="false">web_server.py</Config>
|
||||
|
|
|
|||
Loading…
Reference in a new issue