Explorar el Código

feat: initialize environment configuration with local API and WebSocket URLs

Dr-Swopt hace 4 días
padre
commit
c61d91c11c
Se han modificado 1 ficheros con 8 adiciones y 4 borrados
  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)
+// };