Persano commited on
Commit
7ebbbd9
·
verified ·
1 Parent(s): e07b650

Create supabase_client.py

Browse files
Files changed (1) hide show
  1. supabase_client.py +7 -0
supabase_client.py ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ from supabase import create_client
2
+ import os
3
+
4
+ SUPABASE_URL = os.getenv("SUPABASE_URL")
5
+ SUPABASE_KEY = os.getenv("SUPABASE_SERVICE_ROLE_KEY")
6
+
7
+ supabase = create_client(SUPABASE_URL, SUPABASE_KEY)