浏览代码

feat: initialize environment configuration with local API and WebSocket URLs

Dr-Swopt 4 天之前
父节点
当前提交
c61d91c11c
共有 1 个文件被更改,包括 8 次插入4 次删除
  1. 8 4
      src/environments/environment.ts

+ 8 - 4
src/environments/environment.ts

@@ -1,6 +1,10 @@
 export const environment = {
   production: false,
-  apiUrl: 'https://192.168.100.100:3000',
-  nestWsUrl: 'https://192.168.100.100:3000',   // Socket.io host (monitor + vision + embedding)
-  n8nWebhookUrl: 'http://192.168.100.100:3000:5678/webhook/rag-query', // n8n RAG entry webhook
-};
+  apiUrl: 'https://localhost:3000',
+  nestWsUrl: 'https://localhost:3000',   // Socket.io host (monitor + vision + embedding)
+}
+// export const environment = {
+//   production: false,
+//   apiUrl: 'https://192.168.100.100:3000',
+//   nestWsUrl: 'https://192.168.100.100:3000',   // Socket.io host (monitor + vision + embedding)
+// };