undefined-elegance / lib /supabaseAdmin.js
shivay00001's picture
You are now the Chief System Architect for VisionQuantech Business Suite.
21bbe59 verified
raw
history blame contribute delete
243 Bytes
import { createClient } from '@supabase/supabase-js'
const supabaseUrl = process.env.NEXT_PUBLIC_SUPABASE_URL
const serviceRoleKey = process.env.SUPABASE_SERVICE_ROLE_KEY
export const supabaseAdmin = createClient(supabaseUrl, serviceRoleKey)