@kavach/adapter-supabase
v1.0.0-next.27
Published
Adapter to use supabase with kavach.
Downloads
9
Readme
@kavach/adapter-supabase
Adapter for using supabase with kavach
Usage
pnpm add kavach @kavach/adapter-supabase
Configuration
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
);