feat: Add supabase client skeleton
This commit is contained in:
parent
203aa79470
commit
b80efc6d06
5 changed files with 515 additions and 14 deletions
10
prophet/infra/improvement_supa_repo.py
Normal file
10
prophet/infra/improvement_supa_repo.py
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
from supabase import Client, create_client
|
||||
|
||||
from prophet.config import SupaConfig
|
||||
|
||||
c = SupaConfig.from_env()
|
||||
supabase: Client = create_client(c.URL, c.KEY)
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
print(supabase)
|
||||
Loading…
Add table
Add a link
Reference in a new issue