Connect your shared Supabase database — one-time setup
How to set up
Go to supabase.com, create a free account and a new project.
In your project dashboard, open the SQL Editor and run the query below to create your table.
Go to Project Settings → API and copy your Project URL and anon public key.
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
Blackburn KiaPre Delivery Board
—
Total
—
Confirmed
—
Awaiting
Deal # ⇅
Stock # ⇅
Customer ⇅
Consultant ⇅
Model ⇅
Location ⇅
PDI Ready ⇅
Booked Delivery ⇅
Payment ⇅
Funds ⇅
Notes
Loading vehicles…
🚗
No vehicles found. Add a vehicle to get started.
Add Vehicle
Deal Information
— Unknown
🚛 In Transit
🔧 PD
✓ At Dealership
🏨 Blackburn Hotel
Pre Delivery Inspection (PDI)
Customer Collection / Delivery
Funds Status
Not Set
⏳ Awaiting Funds
✓ Funds Confirmed
Notes
Remove Vehicle?
This will permanently delete this vehicle record from the shared database.
Delivery Calendar
🚗 Kia
🚙 Nissan
🛻 GWM
Import from CSV
CSV Column Format
Your CSV file should have these column headers (in any order). Only deal, customer, model are required.