managarten/apps/memoro/apps/mobile/config.ts
Till JS d8a2b37126 chore(memoro): import legacy backend, mobile, and landing apps
Adds the original NestJS backends (backend, audio-backend), Expo mobile app,
and Astro landing page as-is from the standalone memoro repo. These are
not yet migrated to monorepo standards (migration tracked in memory/CLAUDE.md).

Also adds eslint.config.mjs ignore for apps/*/apps/audio-backend/**
and .prettierignore entries for legacy memoro dirs.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-03-31 17:30:00 +02:00

26 lines
1 KiB
TypeScript

// Configuration for Memoro App
// This file exports environment variables for use throughout the app
export default {
// Supabase configuration
SUPABASE_URL: process.env.EXPO_PUBLIC_SUPABASE_URL || 'https://npgifbrwhftlbrbaglmi.supabase.co',
SUPABASE_ANON_KEY:
process.env.EXPO_PUBLIC_SUPABASE_ANON_KEY || 'sb_publishable_HlAZpB4BxXaMcfOCNx6VJA_-64NTxu4',
// Memoro Service URL
MEMORO_MIDDLEWARE_URL:
process.env.EXPO_PUBLIC_MEMORO_MIDDLEWARE_URL ||
'https://memoro-service-111768794939.europe-west3.run.app',
// App configuration
STORAGE_BUCKET: process.env.EXPO_PUBLIC_STORAGE_BUCKET || 'user-uploads',
// RevenueCat
REVENUECAT_IOS_KEY: process.env.EXPO_PUBLIC_REVENUECAT_IOS_KEY || '',
REVENUECAT_ANDROID_KEY: process.env.EXPO_PUBLIC_REVENUECAT_ANDROID_KEY || '',
// Google OAuth
GOOGLE_CLIENT_ID: process.env.EXPO_PUBLIC_GOOGLE_CLIENT_ID || '',
GOOGLE_IOS_CLIENT_ID: process.env.EXPO_PUBLIC_GOOGLE_IOS_CLIENT_ID || '',
GOOGLE_ANDROID_CLIENT_ID: process.env.EXPO_PUBLIC_GOOGLE_ANDROID_CLIENT_ID || '',
};