Du trenger et gratis Supabase-prosjekt.
Kjør dette i SQL Editor:
create table games (
id uuid primary key default gen_random_uuid(),
played_at date not null,
players jsonb not null,
created_at timestamptz default now()
);
alter table games enable row level security;
create policy "public read" on games for select using (true);
create policy "public insert" on games for insert with check (true);
create policy "public update" on games for update using (true);
create policy "public delete" on games for delete using (true);
Deretter: Settings → Data API → kopier URL og publishable key.