Skip to content

Commit fd89022

Browse files
committed
chore: embed supabase environment
1 parent ee1d867 commit fd89022

3 files changed

Lines changed: 7 additions & 4 deletions

File tree

.changeset/warm-camels-grin.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"r.obin.ch": patch
3+
---
4+
5+
Embed supabase environment

.env.example

Lines changed: 0 additions & 2 deletions
This file was deleted.

src/utils/supabase.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
import { createClient, type RealtimeChannel } from "@supabase/supabase-js";
22

33
// These will be replaced with actual environment variables
4-
const SUPABASE_URL = import.meta.env.PUBLIC_SUPABASE_URL || "";
5-
const SUPABASE_ANON_KEY = import.meta.env.PUBLIC_SUPABASE_ANON_KEY || "";
4+
const SUPABASE_URL = "https://ebazfrryxabwtqaiezir.supabase.co";
5+
const SUPABASE_ANON_KEY = "sb_publishable_BnfPS3NmFKJC1rwKTHgs3w_EPkMGv6S";
66

77
export const supabase = createClient(SUPABASE_URL, SUPABASE_ANON_KEY);
88

0 commit comments

Comments
 (0)