Skip to content

Latest commit

 

History

History
24 lines (18 loc) · 506 Bytes

README.md

File metadata and controls

24 lines (18 loc) · 506 Bytes

@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
);