Connect your shared Supabase database — one-time setup

How to set up

  1. Go to supabase.com, create a free account and a new project.
  2. In your project dashboard, open the SQL Editor and run the query below to create your table.
  3. Go to Project Settings → API and copy your Project URL and anon public key.
  4. Paste them in the fields below and click Connect. Once done, share this HTML file with all staff — they enter the same credentials.
-- Run this once to create all three brand tables create table kia_vehicles ( id uuid primary key default gen_random_uuid(), deal text not null, customer text not null, consultant text, stock_number text, model text not null, location text, pdi_date date, pdi_time time, pdi_notes text, col_date date, col_time time, payment text, biz_manager text, funds text default 'unset', notes text, created_at timestamptz default now() ); create table nissan_vehicles (like kia_vehicles including all); alter table nissan_vehicles alter column id set default gen_random_uuid(); create table gwm_vehicles (like kia_vehicles including all); alter table gwm_vehicles alter column id set default gen_random_uuid();

Your Supabase credentials

Total
Confirmed
Awaiting
Deal # Stock # Customer Consultant Model Location PDI Ready Booked Delivery Payment Funds Notes
Loading vehicles…
Delivery Calendar
🚗 Kia
🚙 Nissan
🛻 GWM