Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save Webudvikler-TechCollege/9618ddd0ea8087f80610a7313cb21a7c to your computer and use it in GitHub Desktop.
Save Webudvikler-TechCollege/9618ddd0ea8087f80610a7313cb21a7c to your computer and use it in GitHub Desktop.
import { createClient } from '@supabase/supabase-js'
import dotenv from 'dotenv'
dotenv.config()
const supabaseUrl = 'https://xxnkmhfkgpxyavtjzeaa.supabase.co'
const supabaseKey = process.env.SUPABASE_KEY
const supabase = createClient(supabaseUrl, supabaseKey)
export { supabase, supabaseUrl }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment