cyberhybridhub/lib/config/api_config.dart
2026-05-20 10:22:58 -05:00

9 lines
276 B
Dart

/// Base URL for the Cyber Hybrid Hub API (Postgres-backed).
///
/// Override at build/run time:
/// flutter run --dart-define=API_BASE_URL=http://localhost:3000
const String apiBaseUrl = String.fromEnvironment(
'API_BASE_URL',
defaultValue: 'http://localhost:3000',
);