소스 검색

feat: initialize development environment configuration with API and service endpoints

Dr-Swopt 1 주 전
부모
커밋
f1d5801fd9
1개의 변경된 파일3개의 추가작업 그리고 3개의 파일을 삭제
  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
 };