usar el mcp como es

This commit is contained in:
2025-06-04 17:24:26 -06:00
parent 943ab1d17f
commit 533637ca51
2 changed files with 2 additions and 2 deletions

View File

@@ -45,7 +45,7 @@ services:
build: ./mcp
restart: unless-stopped
environment:
PLANILLA_API_URL: "http://api:4000"
PLANILLA_API_URL: "http://planilla-api:4000"
depends_on:
- api
ports:

View File

@@ -1,7 +1,7 @@
import axios from 'axios';
// forzar subida
const apiClient = axios.create({
baseURL: 'https://planilla.interno.com', // Using the container name and API port
baseURL: 'http://planilla.interno.com', // Using the container name and API port
headers: {
'Content-Type': 'application/json',
},