- apps/portal 디렉터리를 apps/client로 리팩터링 - ControlPlaneWireClient → WireClient 명명 변경 - 관련_proto import 정렬, struct protobuf 생성 제거 - README, docker-compose, 스크립트 등 일관성 개선
11 lines
330 B
Dart
11 lines
330 B
Dart
class ClientConfig {
|
|
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/client',
|
|
);
|
|
}
|