Paste your Supabase project details below. Do this once per device — use the exact same sync code on every device to share the data.
create table holiday_data ( sync_key text primary key, data jsonb, updated_at timestamptz default now() ); alter table holiday_data enable row level security; create policy "public access" on holiday_data for all using (true) with check (true); alter publication supabase_realtime add table holiday_data;
Project URL
anon public