Supabase Sync
One-time setup: Create a free project at supabase.com → go to SQL Editor → run this:
create table tasks (id bigint primary key, text text, done boolean, tag text, created text);
create table notes (id bigint primary key, title text, body text, created text);
Then grab your URL + anon key from Settings → API.