One free setup so everyone shares the same leads — about 3 minutes
1
Go to supabase.com, sign up (free), and click New project. Give it any name and password, then wait about a minute for it to finish.
2
In the left menu open SQL Editor → New query, paste the code below, and click Run.
create table if not exists bin_state (
id text primary key,
data jsonb,
updated_at timestamptz default now()
);
alter table bin_state disable row level security;
grant all on bin_state to anon, authenticated;
3
Open Project Settings → API. Copy your Project URL and your anon public key into the boxes below.