① Supabase-Tabelle anlegen (einmalig)
Führe dieses SQL in deinem Supabase-Projekt unter SQL Editor aus:
create table if not exists app_data (
key text primary key,
value jsonb,
updated_at timestamptz default now()
);
alter table app_data enable row level security;
create policy "Allow all" on app_data
for all using (true) with check (true);
Zugangsdaten werden lokal gespeichert. Supabase kostenlos: supabase.com