9 lines
276 B
Dart
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',
|
|
);
|