11 lines
488 B
Dart
11 lines
488 B
Dart
abstract class Environment {
|
|
static const env = String.fromEnvironment('env', defaultValue: 'development');
|
|
static const apiBaseUrl = String.fromEnvironment('apiBaseUrl');
|
|
static const apiOrigin = String.fromEnvironment('apiOrigin');
|
|
static const wsUrl = String.fromEnvironment('wsUrl');
|
|
|
|
// --- Fase 2: Firebase & Sentry ---
|
|
// static const sentryDsn = String.fromEnvironment('sentryDsn');
|
|
// static const firebaseProjectId = String.fromEnvironment('firebaseProjectId');
|
|
}
|