Sfoglia il codice sorgente

feat: initialize development environment configuration with API and service endpoints

Dr-Swopt 1 settimana fa
parent
commit
f1d5801fd9
1 ha cambiato i file con 3 aggiunte e 3 eliminazioni
  1. 3 3
      src/environments/environment.ts

+ 3 - 3
src/environments/environment.ts

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