Do this once — then your tasks sync automatically across every device and browser (phone, laptop, anywhere). Supabase is completely free, no credit card needed.
Go to supabase.com → click Start your project → sign up. Then click New Project, name it anything (e.g. lifeos), pick a region, and wait about 1 minute for it to finish loading.
In the left sidebar click SQL Editor → New query. Copy and paste the text below exactly, then click Run:
create table tasks (
id text primary key,
title text,
cat text,
prio text,
status text,
date text,
time text,
created bigint
);
alter table tasks enable row level security;
create policy "allow all" on tasks
for all using (true) with check (true);
In the left sidebar go to Project Settings → API. You need two things:
• Project URL — looks like https://xxxxxxxx.supabase.co
• anon / public key — a long string starting with eyJ...
Paste both below and click Save.