Skip to content

Commit

Permalink
Update supabaseClient.js
Browse files Browse the repository at this point in the history
  • Loading branch information
maxachis authored Feb 5, 2024
1 parent 2c5d174 commit 0052684
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/supabaseClient.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { createClient } from "@supabase/supabase-js";

// Note: All tables in the LRR database should have RLS enabled with read access for the "anon" role, so that the app can read from them without authentication
const supabaseUrl = process.env.REACT_APP_SUPABASE_URL;
const supabaseAnonKey = process.env.REACT_APP_SUPABASE_ANON_KEY;
export const supabase = createClient(supabaseUrl, supabaseAnonKey);
const supabase = createClient(
"https://vsumrxhpkzegrktbtcui.supabase.co",
"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJzdXBhYmFzZSIsInJlZiI6InZzdW1yeGhwa3plZ3JrdGJ0Y3VpIiwicm9sZSI6ImFub24iLCJpYXQiOjE2ODQ3OTU2NzUsImV4cCI6MjAwMDM3MTY3NX0.9lafalZT9FJW1D8DAuIMrsRX0Gs6204nV8ETfGslrqI");

0 comments on commit 0052684

Please sign in to comment.