워크스페이스 기본 포트와 검증 문서를 실제 런타임 기본값에 맞추고, 브리지 경계에서 adapter config 타입 정보를 보존해야 이후 원격 smoke와 경계 안정화 작업이 같은 계약을 사용할 수 있다.
11 lines
331 B
Dart
11 lines
331 B
Dart
class ClientConfig {
|
|
static const String controlPlaneHttpUrl = String.fromEnvironment(
|
|
'IOP_CONTROL_PLANE_HTTP_URL',
|
|
defaultValue: 'http://localhost:18000',
|
|
);
|
|
|
|
static const String controlPlaneWireUrl = String.fromEnvironment(
|
|
'IOP_CONTROL_PLANE_WIRE_URL',
|
|
defaultValue: 'ws://localhost:19080/client',
|
|
);
|
|
}
|