You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Will return a supabase connection using the ANON key
*/
func getSupabaseConnection() -> SupabaseClient? {
let optionalUrl = URL(string: "https://kofhhbgmezymusfukmpz.supabase.co")
guard let supabaseUrl = optionalUrl else {
return nil
}
let anonKey: String = "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJzdXBhYmFzZSIsInJlZiI6ImtvZmhoYmdtZXp5bXVzZnVrbXB6Iiwicm9sZSI6ImFub24iLCJpYXQiOjE2NzYzMTM1ODMsImV4cCI6MTk5MTg4OTU4M30.nsmt-MXftcNSw-VZhDuSabirx01RU0dKfZirDLgpIJA"
let client = SupabaseClient(supabaseURL: supabaseUrl, supabaseKey: anonKey)