Adapter for using supabase with kavach
pnpm add kavach @kavach/adapter-supabase
Create the table below before using this adapter
create table if not exists logs (
id uuid primary key default uuid_generate_v4()
, level varchar
, running_on varchar
, logged_at timestamp with time zone
, message text
, data jsonb
);