We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ee1d867 commit fd89022Copy full SHA for fd89022
3 files changed
.changeset/warm-camels-grin.md
@@ -0,0 +1,5 @@
1
+---
2
+"r.obin.ch": patch
3
4
+
5
+Embed supabase environment
.env.example
src/utils/supabase.ts
@@ -1,8 +1,8 @@
import { createClient, type RealtimeChannel } from "@supabase/supabase-js";
// These will be replaced with actual environment variables
-const SUPABASE_URL = import.meta.env.PUBLIC_SUPABASE_URL || "";
-const SUPABASE_ANON_KEY = import.meta.env.PUBLIC_SUPABASE_ANON_KEY || "";
+const SUPABASE_URL = "https://ebazfrryxabwtqaiezir.supabase.co";
+const SUPABASE_ANON_KEY = "sb_publishable_BnfPS3NmFKJC1rwKTHgs3w_EPkMGv6S";
6
7
export const supabase = createClient(SUPABASE_URL, SUPABASE_ANON_KEY);
8
0 commit comments