agregando logers de env variables
All checks were successful
build-and-deploy / filter (push) Successful in 2s
build-and-deploy / build (push) Successful in 25s
build-and-deploy / deploy (push) Successful in 41s

This commit is contained in:
2025-06-06 15:11:18 -06:00
parent b751cb2911
commit 05ee5b46fc
4 changed files with 14 additions and 1 deletions

View File

@@ -12,6 +12,11 @@ dotenv.config();
console.log(`Environment: ${process.env.NODE_ENV || 'development'}`);
console.log(`MCP URL: ${process.env.MCP_URL || 'http://localhost:5000/mcp'}`);
console.log(`Gemini API Key: ${process.env.GEMINI_API_KEY ? '***' : 'not set'}`);
const PORT = Number(process.env.PORT) || 8001;