① 在 Supabase 的 SQL Editor 里执行一次建表:
create table trips (
id text primary key,
data jsonb not null,
updated timestamptz default now()
);
alter table trips enable row level security;
create policy "public all" on trips for all using (true) with check (true);
② 在 Project Settings → API 复制 Project URL 和 anon key 填到上面即可。