feat: Add supabase client skeleton

This commit is contained in:
Marty Oehme 2025-06-09 15:54:26 +02:00
parent 203aa79470
commit b80efc6d06
Signed by: Marty
GPG key ID: 4E535BC19C61886E
5 changed files with 515 additions and 14 deletions

View 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)