iop/apps/client/lib/client_config.dart
toki dd488f1e56 refactor(runtime): 포트 표준화와 브리지 경계를 반영한다
워크스페이스 기본 포트와 검증 문서를 실제 런타임 기본값에 맞추고, 브리지 경계에서 adapter config 타입 정보를 보존해야 이후 원격 smoke와 경계 안정화 작업이 같은 계약을 사용할 수 있다.
2026-06-07 17:51:54 +09:00

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',
);
}