Connect your Supabase database to sync all clients across devices
Step 1 โ Create a free Supabase project
Go to supabase.com โ New Project
Sign up for free at supabase.com, create a new project, then open the SQL Editor and run this SQL to create the clients table:
create table if not exists clients (
id bigserial primary key,
name text not null,
country text default '',
plan text default 'Monthly',
campaign text default '',
source text default '',
kyc text default '',
acc_status text default 'Active',
seats integer default 1,
price numeric(10,2) default 15.00,
start_date date,
end_date date not null,
contact text default '',
email text default '',
voip text default '',
dialer text default '',
notes text default '',
created_at timestamptz default now()
);
alter table clients enable row level security;
create policy "Allow all" on clients
for all using (true) with check (true);
Step 2 โ Get your project credentials
Project Settings โ API
In your Supabase project go to Settings โ API. Copy your Project URL and anon / public key and paste them below.