Files
1356/lifetimer/lib/bootstrap/env.dart
T
2026-01-03 18:35:35 +01:00

12 lines
285 B
Dart

class Env {
static const String supabaseUrl = String.fromEnvironment(
'SUPABASE_URL',
defaultValue: 'https://your-project.supabase.co',
);
static const String supabaseAnonKey = String.fromEnvironment(
'SUPABASE_ANON_KEY',
defaultValue: 'your-anon-key',
);
}