Skip to content

Commit ce71de7

Browse files
committed
fix websocker env vars
1 parent 592b560 commit ce71de7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

augmentos_cloud/packages/cloud/src/services/core/websocket.service.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -63,8 +63,8 @@ import tpaRegistrationService from './tpa-registration.service';
6363
import healthMonitorService from './health-monitor.service';
6464
import axios from 'axios';
6565

66-
export const CLOUD_PUBLIC_HOST_NAME = process.env.PUBLIC_HOST_NAME; // e.g., "prod.augmentos.cloud"
67-
export const CLOUD_LOCAL_HOST_NAME = process.env.LOCAL_HOST_NAME; // e.g., "localhost:8002" | "cloud" | "cloud-debug-cloud.default.svc.cluster.local:80"
66+
export const CLOUD_PUBLIC_HOST_NAME = process.env.CLOUD_PUBLIC_HOST_NAME; // e.g., "prod.augmentos.cloud"
67+
export const CLOUD_LOCAL_HOST_NAME = process.env.CLOUD_LOCAL_HOST_NAME; // e.g., "localhost:8002" | "cloud" | "cloud-debug-cloud.default.svc.cluster.local:80"
6868
export const AUGMENTOS_AUTH_JWT_SECRET = process.env.AUGMENTOS_AUTH_JWT_SECRET || "";
6969

7070
if (!CLOUD_PUBLIC_HOST_NAME) {

0 commit comments

Comments
 (0)