✦✝✦
Cloud Sync Setup
One free account syncs your library
to every device automatically.

Step 1 — Create your free Supabase project

1
Go to supabase.com and sign up free — no credit card required.
2
Click New project, give it any name (e.g. "holy-mass"), choose a region, set a database password, then click Create new project.
3
Wait about 30 seconds for it to set up, then open the SQL Editor from the left sidebar. Paste and run this SQL to create the tracks table:
CREATE TABLE IF NOT EXISTS tracks ( id TEXT PRIMARY KEY, name TEXT NOT NULL, file_name TEXT, categories JSONB DEFAULT '[]', download_url TEXT, storage_path TEXT, created_at BIGINT ); ALTER TABLE tracks DISABLE ROW LEVEL SECURITY;
4
In the left sidebar go to StorageNew bucket → name it audio → check Public bucket → click Save.

Step 2 — Connect this app

5
In your Supabase project go to Settings → API. Copy the Project URL and the Publishable key (may also be labelled "anon public").

Paste the same URL and key on every device to share the library.

Select a track to begin

0:000:00