app framework

This commit is contained in:
blaisadmin
2026-03-27 00:38:12 -04:00
parent a395f9422c
commit bba670491e
39 changed files with 11781 additions and 1 deletions
+12
View File
@@ -0,0 +1,12 @@
import Constants from 'expo-constants';
import { createClient } from '@supabase/supabase-js';
const supabaseUrl =
Constants.expoConfig?.extra?.supabaseUrl ?? 'https://your-project.supabase.co';
const supabaseAnonKey =
Constants.expoConfig?.extra?.supabaseAnonKey ?? 'your-anon-key';
// Replace the fallback values above with environment-backed Expo config
// when you wire the project to a real Supabase instance.
export const supabase = createClient(supabaseUrl, supabaseAnonKey);