Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions packages/supabase/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,11 +33,11 @@ interface SessionData {
}
type MyContext = Context & SessionFlavor<SessionData>;

const URL = 'http://localhost:3000';
const KEY = 'some.fake.key';
const SUPABASE_URL = 'http://localhost:3000';
const SUPABASE_ANON_KEY = 'some.fake.key';

// supabase instance
const supabase = createClient(URL, KEY);
const supabase = createClient(SUPABASE_URL, SUPABASE_ANON_KEY);

//create storage
const storage = supabaseAdapter({
Expand Down
Loading