Complete Guide

Get SugarSpin Running
in Minutes

Step by step instructions for Windows, Mac, and Linux. From installing Docker to streaming your first album, and going remote if you want.

Guided Install

The fastest way to get SugarSpin running. The installer checks for Docker, finds your music folder, and launches everything automatically, on any machine, any CPU.

Open Terminal and run this single command. Works on Intel and Apple Silicon (M1/M2/M3).

curl -sSL https://sugarspin.hotdang.studio/install.sh | bash
The script will ask for your music folder path and port, then launch SugarSpin automatically.

Download the installer and run it in PowerShell.

Invoke WebRequest -Uri https://sugarspin.hotdang.studio/install.ps1 -OutFile install.ps1;.\install.ps1
Run PowerShell as Administrator. The script detects your music folder and sets everything up automatically.

Works on Ubuntu, Debian, Fedora, and all major NAS platforms (Synology, QNAP, Unraid, UGREEN).

curl -sSL https://sugarspin.hotdang.studio/install.sh | bash
Auto detects NAS music paths for Synology, QNAP, Unraid, and UGREEN. Just confirm the path and you're done.
After install: Open http://localhost:3333, create your account, go to Settings → Music Library, and click Rescan Library. Done.

Prefer to run it manually? Pick your platform below. ↓

Manual, Paste & Run

If Docker is already installed, just pick your platform and paste the command. Works on Intel, AMD, M1/M2/M3, ARM, all architectures.

# Replace /path/to/your/music with your actual music folder docker run -d \ --name sugarspin player \ --restart unless stopped \ -p 3333:3333 \ -v /path/to/your/music:/music:ro \ -v sugarspin data:/app/data \ rotrier66/sugarspin:latest
Windows path example: C:/Users/YourName/Music:/music:ro
docker run -d \ --name sugarspin player \ --restart unless stopped \ -p 3333:3333 \ -v /volume1/music:/music:ro \ -v sugarspin data:/app/data \ rotrier66/sugarspin:latest
GUI option: In Container Manager, search rotrier66/sugarspin, set port 3333, and mount your music folder to /music.
docker run -d \ --name sugarspin player \ --restart unless stopped \ -p 3333:3333 \ -v /share/Music:/music:ro \ -v sugarspin data:/app/data \ rotrier66/sugarspin:latest
docker run -d \ --name sugarspin player \ --restart unless stopped \ -p 3333:3333 \ -v /mnt/user/music:/music:ro \ -v sugarspin data:/app/data \ rotrier66/sugarspin:latest
docker run -d \ --name sugarspin player \ --restart unless stopped \ -p 3333:3333 \ -v /volume1/MEDIA/MUSIC:/music:ro \ -v sugarspin data:/app/data \ rotrier66/sugarspin:latest
# Download and run via Docker Compose curl -O https://sugarspin.hotdang.studio/docker compose customer.yml mv docker compose customer.yml docker compose.yml # Edit docker compose.yml to set your music path, then: docker compose up -d
After running the command: Open http://localhost:3333 in your browser, create your account, then go to Settings → Music Library and click Rescan Library. That's it!
New to Docker? Follow the step by step guide below. ↓

1

Install Docker on Your Machine

SugarSpin runs inside a Docker container, so Docker needs to be on the machine that will host your music. Pick your platform below.

Docker Desktop for Windows RECOMMENDED

The easiest way to get Docker on Windows. Includes a GUI so you can see and manage your containers without using the terminal.

  • 1
    Go to docker.com/products/docker desktop and click Download for Windows.
  • 2
    Run the installer. When prompted, leave WSL 2 checked, this is the recommended backend.
  • 3
    Restart your computer when asked.
  • 4
    Launch Docker Desktop from the Start menu. It will finish setup on first run. Wait for the whale icon to appear in your taskbar, that means Docker is running.
Tip: You don't need to understand Docker to use it. Once Docker Desktop is running, you just need a terminal (PowerShell or Command Prompt) to run the SugarSpin command in the next step.

Docker Desktop for Mac RECOMMENDED

Works on both Apple Silicon (M1/M2/M3) and Intel Macs.

  • 1
    Go to docker.com/products/docker desktop and choose the correct version, Apple Silicon or Intel Chip. Check → About This Mac to find out which you have.
  • 2
    Open the downloaded .dmg file and drag Docker to your Applications folder.
  • 3
    Launch Docker from Applications. It will ask for your password to install helper components, this is normal.
  • 4
    Wait for the whale icon to appear in your menu bar. When it shows "Docker Desktop is running", you're ready.
Alternative: OrbStack is a lighter, faster alternative to Docker Desktop on Mac that many users prefer. It's free for personal use and works identically for running SugarSpin.

Docker Engine for Linux RECOMMENDED

Install Docker Engine directly, no GUI needed. Works on Ubuntu, Debian, Fedora, and most major distros.

Ubuntu / Debian:

# Install Docker curl -fsSL https://get.docker.com | sh # Add your user to the docker group (so you don't need sudo) sudo usermod -aG docker $USER # Log out and back in, then verify Docker is working docker --version

For Fedora or other distros, visit the official Docker install docs and select your distro.

Synology NAS

Install Container Manager from the Synology Package Center. Once installed, Docker is available via the GUI, no terminal required.

QNAP NAS

Install Container Station from the QNAP App Center. It provides a full Docker GUI similar to Synology's Container Manager.

UGREEN NAS

Docker comes pre installed or is available as an app from the UGREEN UGOS app store. You can also SSH in and use Docker CLI directly.

Note: For NAS devices, jump straight to Step 2, Docker is already available, just use the SSH terminal or your NAS's container GUI.

2

Pull & Run SugarSpin

SugarSpin lives on Docker Hub at rotrier66/sugarspin. Open a terminal (PowerShell on Windows, Terminal on Mac/Linux) and run the command for your platform.

# Replace C:/Users/YourName/Music with your actual music folder path docker run -d \ --name sugarspin player \ --restart unless stopped \ -p 3333:3333 \ -v "C:/Users/YourName/Music:/music:ro" \ -v sugarspin data:/app/data \ rotrier66/sugarspin:latest
Windows path tip: Use forward slashes in the path (e.g. C:/Users/Roger/Music) or a double backslash (C:\\Users\\Roger\\Music). On Mac/Linux use the normal path like /Users/roger/Music or /home/roger/Music.
# SSH into Synology, then: docker pull rotrier66/sugarspin:latest docker run -d \ --name sugarspin player \ --restart unless stopped \ -p 3333:3333 \ -v /volume1/music:/music:ro \ -v sugarspin data:/app/data \ rotrier66/sugarspin:latest
GUI option: Open Container Manager, click Registry, search for rotrier66/sugarspin, download it, then create a container with port 3333 and your music folder mounted to /music.
# SSH into QNAP, then: docker pull rotrier66/sugarspin:latest docker run -d \ --name sugarspin player \ --restart unless stopped \ -p 3333:3333 \ -v /share/Music:/music:ro \ -v sugarspin data:/app/data \ rotrier66/sugarspin:latest
GUI option: Use Container Station, search Docker Hub for rotrier66/sugarspin, and configure the same port and volume settings.
# SSH into UGREEN NAS, then: docker pull rotrier66/sugarspin:latest docker run -d \ --name sugarspin player \ --restart unless stopped \ -p 3333:3333 \ -v /volume1/MEDIA/MUSIC:/music:ro \ -v sugarspin data:/app/data \ rotrier66/sugarspin:latest

Prefer Docker Compose? Download the compose file, edit your music path, and spin it up:

# Download the compose file curl -O https://sugarspin.hotdang.studio/docker compose customer.yml mv docker compose customer.yml docker compose.yml # Open docker compose.yml in a text editor and update the music path # Then start it: docker compose up -d
Confirm it's running: Run docker ps in your terminal. You should see sugarspin listed with status Up.

3

First Launch & Setting Up Your Library

Once the container is running, open your browser and visit:

http://localhost:3333

If you're opening from a different device on the same network (like a phone or tablet), use your server's local IP address instead:

http://192.168.x.x:3333
Finding your IP: On Windows run ipconfig in PowerShell, on Mac/Linux run ifconfig or ip addr in Terminal. Look for your local network IP, it usually starts with 192.168 or 10.0.

Create Your Account

On first launch you'll be prompted to create an admin account. Choose a username and password, this protects access to your music server.

Connect Your Music Library

Supported formats: FLAC, MP3, AAC, OGG, WAV, M4A, all lossless and lossy formats work out of the box.
Your library, your structure. SugarSpin reads your music, it never moves, renames, or reorganizes your files or folders. Covers and names come straight from what's already in your files: artwork embedded in the tags (or a cover.jpg / folder.jpg in the album folder), and the artist, album, and title from each file's tags and folder names. If a cover is blank, or a name looks wrong or reads “Unknown,” that file is just missing artwork or tags, add them on your end and it shows on the next scan. Everyone organizes their collection their own way, and SugarSpin respects yours. Optional helpers like Smart Fix and cover fetch can tidy what's displayed, only ever when you choose to run them. (Folder and naming cleanup may come as an optional tool in the future, never something done to your library automatically.)
Forgot your password? For security there is no online reset — nobody can reset your account over the internet. To set a new one, connect to your server from your home network and run: docker exec sugarspin-player node /app/server/reset-password.js "your-new-password", then log in with it. Your music and settings are untouched. (Mistyped your username? Use reset-username.js the same way.)

4

Navigating SugarSpin

SugarSpin has a clean sidebar navigation. Here's a quick tour of every section:

The Player Bar

When music is playing, a player bar appears at the bottom of the screen with playback controls, play/pause, skip, shuffle, repeat, and volume. Click the note icon (♪) at the bottom right of any page to jump to the full Now Playing vinyl view.

Search

The search bar at the top searches across your entire library, albums, artists, and song titles, instantly.

Settings (⚙️)

The gear icon in the sidebar opens your Settings page. From here you can:

Account (👤)

The person icon opens your account page where you can change your password, view your license key, and check for SugarSpin updates.

Your devices now live in the Stream To sheet (the dancing–wave button in the play bar), not on the Account page. Open it to see what’s playing now plus every device and BluOS / NAD speaker you can send the music to. Tap into any device to give it a friendly name, set a default device (a gold dot marks it) so playback lands where you want when you press play, or sign a device out with a single tap. It all syncs across your account. The Account page keeps just the Auto logout setting under Sessions — pick Never if you want sessions to persist until you sign them out yourself.

The address shown is not a promise that it will work from every network. SugarSpin does not detect or configure your router, internet access, VPN, or tunnel. If you want access away from home, the server owner must separately configure an address the remote device can reach.

Appearance

SugarSpin uses one consistent warm-cream interface accent. The older accent-color selector was removed to keep Settings simpler and the appearance consistent across devices.

Choosing where the music plays

Press play on whichever device you're at and that device becomes the one making sound; your other devices stay in sync as controllers. To move playback elsewhere, open Stream To (the dancing–wave button in the play bar) — it lists every active device plus your BluOS / NAD speakers from any screen, your phone included — and tap the one you want.


🖥

Install the Mac Desktop App RECOMMENDED

Once your server is up and running, the cleanest way to use SugarSpin on a Mac is the native desktop app. It runs in its own window with no browser chrome, no tabs, no address bar, no browser quirks, and behaves like a proper Mac music app should.

Why install the desktop app?

  • No browser to get in the way. No tab clutter, no notifications from other sites, no accidental refresh that kills playback.
  • Lives in your Dock. Cmd Tab to it like any pro app.
  • Native Mac app. Because it's a direct download (not from the App Store), the first time you open it, right-click the app and choose Open — after that it launches normally.
  • Snappier feel. Cleaner animations, faster scroll, no browser overhead.
  • Free with any license. The app is free, your license is for the server.

How to install

Switching servers later

If you move your server to a new IP, or want to point at a different address, click the SugarSpin menu at the top of your screen and choose Switch Server…. The app clears the saved address and restarts you back to the setup screen.

iPhone & iPad users: the official iOS & iPadOS app is on the App Store as a free download, with lock-screen Now Playing and CarPlay support. It uses the normal SugarSpin connection, not the optional third-party credentials.
Windows / Linux users: a native build is on the roadmap. For now, the web app in any modern browser gives you the same features.

Auto Updates RECOMMENDED

SugarSpin can update itself automatically. The install script from sugarspin.app already includes this, a tiny companion container called Watchtower polls Docker Hub once a day, pulls new SugarSpin releases, and restarts the container. You never see it, you never run it, you never think about it.

How to check if auto updates are on

Turning it on (existing installs only)

If you installed before auto updates were built in, the Auto Updates card shows OFF with a copy paste snippet. Add that snippet to your docker compose.yml, run docker compose up -d, and you’re done.

Want to stay on a specific version? Edit the SugarSpin image tag in your docker compose.yml from rotrier66/sugarspin:latest to a specific version like rotrier66/sugarspin:1.9.6. Watchtower won’t touch a pinned version. Switch back to :latest whenever you want auto updates again.
5

Optional Remote Access

By default SugarSpin is reachable only on the network where its server runs. SugarSpin does not detect, install, configure, or manage remote access. If you want to connect from cellular or another location, choose and configure an independent networking option, then use the address that service makes reachable. The examples below are starting points only; follow each provider's current documentation for your hardware and network.

Option A: Tailscale THIRD PARTY

Tailscale is an independent mesh-VPN service. After you install and configure it on the server and remote device, use the SugarSpin address that your Tailscale setup can reach. A normal home IP will not automatically work on cellular unless the network has been configured to route it.

  • 1
    Create a free account at tailscale.com.
  • 2
    Install Tailscale on your server (the machine or NAS running SugarSpin): tailscale.com/download. Run tailscale up to connect it.
  • 3
    To keep using your familiar home address everywhere, turn your server into a subnet router: tailscale up --advertise-routes=192.168.1.0/24 (use your own home subnet), then approve the route in the Tailscale admin console under Machines → your server → Edit route settings.
  • 4
    Install Tailscale on each phone, tablet, or laptop you take out of the house and sign in with the same account. Leave it switched on.
  • 5
    Test the chosen address while the remote device is off the home Wi-Fi. If it loads, use that exact reachable address in the SugarSpin app.
Don’t want subnet routing? You may be able to use the server’s Tailscale IP directly. Confirm the current address and routing requirements in Tailscale's documentation, then test it from the remote device.

Option B: Cloudflare Tunnel SHAREABLE URL

Cloudflare Tunnel creates a secure, public HTTPS URL for your SugarSpin without opening any ports on your router. Best if you want a clean web address you can open from any browser with no app installed. Free.

  • 1
    Create a free account at dash.cloudflare.com.
  • 2
    Go to Zero Trust → Networks → Tunnels and click Create a tunnel.
  • 3
    Name your tunnel (e.g. sugarspin) and follow the install instructions to run cloudflared on your server machine. They provide a one line install command.
  • 4
    Under Public Hostname, add a route: set the subdomain (e.g. music), your domain, and the service as http://localhost:3333.
  • 5
    Save, then test the resulting HTTPS address from a device outside the home network before entering it in SugarSpin.
Don't have a domain? Cloudflare offers free .trycloudflare.com tunnels for testing. For a permanent URL, you need a domain, they start at ~$10/year. Cloudflare also sells domains at cost.

Option C: NetBird OPEN SOURCE

NetBird is an independent WireGuard-based mesh VPN. It offers managed and self-hosted configurations. SugarSpin does not know whether NetBird is installed and does not configure it; use the address made reachable by your own NetBird setup.

  • 1
    Sign up free at netbird.io — or self-host it, following the guide at docs.netbird.io.
  • 2
    Install the NetBird agent on your server (the machine or NAS running SugarSpin) and connect it to your network with the setup key.
  • 3
    To keep your familiar home address everywhere, add your server as a network route (advertise your home subnet, e.g. 192.168.1.0/24) and enable it in the NetBird dashboard.
  • 4
    Install NetBird on each phone, tablet, or laptop you take out of the house, sign in with the same account, and leave it switched on.
Prefer no subnet route? You can also just use your server’s NetBird IP (100.x.x.x:3333) directly — works anywhere, though it’s a different address than your LAN IP.
Which one should I use? That depends on your server, router, security needs, and the devices that must connect. SugarSpin does not choose or detect the service. Whichever option you use, test its reachable address from outside the home network before relying on it in a car or while traveling.
Heads up: Tailscale, Cloudflare, and NetBird are independent third-party services, not made by SugarSpin. The steps above are a quick starting point to point you in the right direction. For full installation, advanced configuration, or troubleshooting, please use each service’s own documentation — Tailscale, Cloudflare, and NetBird. SugarSpin support covers SugarSpin itself; we can’t troubleshoot third-party networking tools for you.
🚗

Use SugarSpin in Your Car (CarPlay & Android Auto)

CarPlay is built into the official SugarSpin iPhone app and uses the normal SugarSpin connection. It does not use the optional third-party username and password. Android Auto currently requires a compatible third-party app that connects through SugarSpin's Subsonic-compatible API.

Pro & Gold: optional third-party app access, including the current Android Auto route, requires Pro or Gold. Compatibility and dashboard behavior depend on the independent app selected. SugarSpin has verified its Subsonic authentication but does not guarantee every third-party client or Android device.

Official iPhone app and CarPlay

Install the official SugarSpin app from the App Store and connect it to a SugarSpin address your phone can reach. CarPlay is built into that app. If you are away from home, the address must already be reachable through remote access configured by the server owner.

Android Auto or another third-party client

The username defaults to sugarspin. You can change it to anything you like.

Step 2, Pick an app for your phone

📱 iPhone, CarPlay

Use the official SugarSpin iPhone app for CarPlay.

Independent Subsonic-compatible iPhone apps may also connect on Pro/Gold, but their features and pricing are controlled by their developers.

🤖 Android, Android Auto

Choose an Android Subsonic client that currently advertises Android Auto support.

Examples include Ultrasonic and Symfonium, but availability, pricing, supported API features, and dashboard behavior can change. Verify the app before purchasing.

Step 3, Connect the app to your server

Open the app you installed and add a new server. You'll need three things:

Tap Connect / Save. What appears next depends on which SugarSpin endpoints and dashboard features that third-party app supports.

Step 4, Plug into your car

Plug your phone into your car or use wireless CarPlay / Android Auto if supported by the vehicle. Whether a third-party app appears and which controls it exposes are determined by the phone, vehicle, and app.

Don't see the app on the dashboard? On iPhone, go to Settings → General → CarPlay → [your car] → Customize and make sure the app is added to the visible list. On Android, open Android Auto settings and check the Customize launcher list.

Sharing with family

Pro and Gold allow unlimited simultaneous clients. Anyone you authorize still needs an address their device can reach. Treat the third-party app password as a credential: share it only with people you trust and replace it if necessary.

🔊

Cast to Bluesound & NAD Speakers

If you own a Bluesound speaker (Node, Powernode, Pulse) or a NAD network amp (M10, M33, C series), SugarSpin can stream straight to it. No extra app on the speaker side, no AirPlay middleman. Just pick it from the device picker and play.

Network requirement: the BluOS device must be reachable from the SugarSpin server. SugarSpin does not identify or configure the customer's Wi-Fi, VLAN, router, or Docker network.

Step 1, Make sure your speaker is on the same network

The BluOS device and your SugarSpin server need to be on the same LAN/Wi Fi. Cross VLAN or guest network setups won't work because the speaker has to be reachable directly from SugarSpin.

Step 2, Confirm local reachability

Open SugarSpin and the BluOS controller on the local network and confirm that both the server and speaker are reachable. Guest Wi-Fi, VLAN isolation, firewall rules, and some container network configurations can block discovery or playback.

Step 3, Connect when prompted

SugarSpin auto scans your network for BluOS devices on startup. When one is found, a toast pops up in any open SugarSpin browser tab: "Found NAD M10 on your network, Connect?" Click Connect and the speaker is added to your device picker.

Step 4, Pick the speaker, play music

Click the BluOS device in the picker. Your local audio mutes and the speaker takes over. The speaker's own front panel display shows the song title, artist, album, and cover art. Use SugarSpin's controls (play, pause, next, back, song selection) normally, they all route to the speaker.

Multi device control

Once a speaker is cast, ANY device with SugarSpin open can control it. Start a song on your Mac, skip on your iPad, queue something from your phone. They all see the same queue and the same now playing state. Perfect for family setups.

Switching back to your browser

Open the device picker again and click your own device (your Mac, iPad, etc.). The Bluesound speaker stops cleanly and audio resumes on the browser. One picker, both directions.

If your speaker doesn't show up: wait 30 seconds for the initial discovery scan to finish, or restart SugarSpin (the server side container) to trigger a fresh scan. Make sure the speaker shows up in the BluOS Controller app on your phone first, if BluOS itself can't find it, SugarSpin can't either.
📝

Lyrics & Visualizers

SugarSpin can show you synced lyrics for almost any song and turn the Now Playing view into a live light show. Both are turned on by default, here's how to use them.

Switching the Now Playing view

Look for the faint circular icon in the top right corner of the Now Playing screen. It sits at about 30% opacity so it doesn't distract from the album art. Tap it once to open the picker.

FAB placement (v1.8.1+): The view picker button now lives in the bottom left corner as a 48 px floating button matching the main Now Playing FAB on the right. The settings icon replaced the old double tap gesture, which was unreliable on touch screens. Single tap, single menu, same on Mac and iPad.

Lyrics: three animation styles

When you pick the Lyrics view, a faint pill appears at the bottom of the screen with three style options. The pill stays at 20% opacity until you reach for it.

Where lyrics come from

SugarSpin checks two free lyric databases automatically, you don't need any API keys.

Once a song's lyrics are found, they're cached in your local database forever. They only fetch once per song.

Visualizers that work even when casting

The cool one: even when SugarSpin is streaming to your Bluesound or NAD speaker (so your laptop's audio is silent), the visualizers still animate from the real audio. The server decodes the track and broadcasts level data 30 times per second to every connected browser. So your Mac, iPad, and any other open SugarSpin tab all bounce in perfect sync with what the speaker is playing.

First time each song plays after a SugarSpin upgrade, the server does a one time decode in the background (1 2 seconds). After that it's instant.

Why some songs don't have lyrics: if both LRCLib and NetEase strike out, the song simply isn't in any free database. There's no workaround, that's the trade off for not requiring you to sign up for a paid service.
🎚

ReplayGain & Discover Daily

ReplayGain: consistent volume across tracks

Different albums are mastered at wildly different levels, a quiet jazz record next to a loud rock record means constant volume knob twiddling. ReplayGain fixes that by storing a per track and per album loudness number in the file metadata, and SugarSpin applies it during playback so everything sits at the same perceived level.

Turning it on

Go to Settings → ReplayGain. Three options:

For ReplayGain to work, your files need to have ReplayGain tags written in. Most modern downloads (Bandcamp, qobuz, etc.) already have them. For older files, tools like mp3gain, foobar2000, or MusicBrainz Picard can analyze and add the tags.

Discover Daily

SugarSpin generates a fresh 25 track playlist for you every day, mixed from:

It's pinned to the top of your Home page. Click Shuffle if you want a different mix on demand. The playlist refreshes automatically each day, no setup needed.

Tube Warmth, analog DSP (new in v1.8.1)

A built in vacuum tube saturation stage that adds the gentle even order harmonics and soft compression of a real tube preamp to your audio, the warmth without the gear. It runs entirely in the browser’s Web Audio API graph, between your file and your speakers/headphones. Your source FLAC/ALAC files are never touched.

Go to Settings → Tube Warmth. Four presets plus a custom drive slider:

Tubes the visualizer vs. Tube Warmth the DSP: they’re separate features. Tube Warmth changes what you hear. The Tubes visualizer changes what you see (in Now Playing). You can run either, both, or neither.

Updating SugarSpin

When a new version of SugarSpin is released, you'll see an Update Available banner on your Account page inside the app. Here's what that means and how to apply it.

What the update does

SugarSpin runs as a Docker container. Updating means pulling the new container image from Docker Hub and restarting SugarSpin with it. Your music library, playlists, favorites, settings, and play history are all stored in a separate data volume, they are completely unaffected by the update.

How to update

Click Copy Update Command on your Account page. This copies the update command to your clipboard. How you run it depends on how you manage Docker on your machine:

Once the update finishes, SugarSpin restarts automatically and you'll be on the latest version. Refresh your browser if the page doesn't update on its own.

I'm not comfortable running commands, what do I do?

If you're on a NAS, you almost certainly don't need to. Your NAS Docker interface can handle the update graphically, look for an "Update image" or "Recreate container" button next to the SugarSpin container. If you're unsure where to find it, search for "[your NAS brand] update Docker container" for specific instructions.

If you do need to use a terminal and aren't sure how, feel free to reach out at support@hotdang.studio, we're happy to walk you through it.

Transferring or Deactivating Your License

Your SugarSpin license is yours, it's not permanently locked to one machine. You can deactivate it and move it to a different machine whenever you need to.

When would I need to do this?

How to deactivate your license

  1. Open SugarSpin in your browser and go to the Account page (click your avatar or username in the sidebar).
  2. Scroll down to the License section. You'll see your current tier and license key.
  3. Click Deactivate License. A confirmation prompt will appear, read it and confirm.
  4. Your machine reverts to the free tier. Your library, playlists, and favorites are untouched.
  5. Your license key is now free to be activated on another machine.

How to activate on the new machine

  1. Install and launch SugarSpin on the new machine.
  2. Go to the Account page and find the License section.
  3. Paste the same license key you used before, exactly as it appears in your purchase email.
  4. Click Activate. Your full tier unlocks immediately, no rescan needed.

What if I can't access the old machine anymore?

If the old machine is gone, broken, or you no longer have access to it, contact us at support@hotdang.studio with your license key. We'll manually release the activation and you can re activate on the new machine. This is always available, you're not stuck.

Do I need to buy a new license?

No. Never. One purchase is valid for as long as you use SugarSpin. You can deactivate and re activate as many times as you need, on as many machines as your tier allows (one server installation per license). Your license key does not expire.


Ready to play your whole library?

The free tier covers 500 tracks. Upgrade to Pro for a larger library, or Gold for unlimited music, one time purchase, no subscriptions.

See Pricing →