11 lines
330 B
Dart
11 lines
330 B
Dart
class PortalConfig {
|
|
static const String controlPlaneHttpUrl = String.fromEnvironment(
|
|
'IOP_CONTROL_PLANE_HTTP_URL',
|
|
defaultValue: 'http://localhost:9080',
|
|
);
|
|
|
|
static const String controlPlaneWireUrl = String.fromEnvironment(
|
|
'IOP_CONTROL_PLANE_WIRE_URL',
|
|
defaultValue: 'ws://localhost:19080/portal',
|
|
);
|
|
}
|