This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
JAVSCRIPT CODE SNIPPET: | |
======================= | |
import { createClient } from '@supabase/supabase-js'; | |
// Initialize Supabase client | |
const supabaseUrl = 'https://<project-ref>.supabase.co'; // Replace with your project URL | |
const supabaseKey = 'ANON OR SERVICE_ROLE'; // Replace with your Supabase anon or service key | |
const supabase = createClient(supabaseUrl, supabaseKey); |