11 lines
664 B
TypeScript
11 lines
664 B
TypeScript
// This file is automatically generated. Do not edit it directly.
|
|
import { createClient } from '@supabase/supabase-js';
|
|
import type { Database } from './types';
|
|
|
|
const SUPABASE_URL = "https://tnurlgbvfsxwqgwxamni.supabase.co";
|
|
const SUPABASE_PUBLISHABLE_KEY = "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJzdXBhYmFzZSIsInJlZiI6InRudXJsZ2J2ZnN4d3Fnd3hhbW5pIiwicm9sZSI6ImFub24iLCJpYXQiOjE3NDQ5MTQ1OTksImV4cCI6MjA2MDQ5MDU5OX0.9__EQiZDJ954SmeeJIDTQjOYDjiiRcppai1e8UpuOl4";
|
|
|
|
// Import the supabase client like this:
|
|
// import { supabase } from "@/integrations/supabase/client";
|
|
|
|
export const supabase = createClient<Database>(SUPABASE_URL, SUPABASE_PUBLISHABLE_KEY); |