sourcewizard
Version:
SourceWizard - AI-powered setup wizard for dev tools and libraries with MCP integration
7 lines (6 loc) • 491 B
JavaScript
import { createClient, } from "@supabase/supabase-js";
// Supabase configuration constants
const SUPABASE_URL = "https://sfcheddgbldthfcxoaqn.supabase.co";
const SUPABASE_ANON_KEY = "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJzdXBhYmFzZSIsInJlZiI6InNmY2hlZGRnYmxkdGhmY3hvYXFuIiwicm9sZSI6ImFub24iLCJpYXQiOjE3MzE3OTM1MzgsImV4cCI6MjA0NzM2OTUzOH0.pErXNTPwqK71LA-mC3tfZdPtE8rYySyaOo1czW-MpEs";
// Create Supabase client
export const supabase = createClient(SUPABASE_URL, SUPABASE_ANON_KEY);