New projects created: - michangarrito (marketplace mobile) - template-saas (SaaS template) - clinica-dental (dental ERP) - clinica-veterinaria (veterinary ERP) Architecture updates: - Move catalog from core/ to shared/ - Add MCP servers structure and templates - Add git management scripts - Update SUBREPOSITORIOS.md with 15 new repos - Update .gitignore for new projects Repository infrastructure: - 4 main repositories - 11 subrepositorios - Gitea remotes configured 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
17 lines
416 B
Plaintext
17 lines
416 B
Plaintext
# ============================================================================
|
|
# MCP Server Configuration
|
|
# ============================================================================
|
|
|
|
# Server
|
|
PORT=3100
|
|
NODE_ENV=development
|
|
|
|
# Database (PostgreSQL with pgvector)
|
|
DATABASE_URL=postgresql://user:password@localhost:5432/mcp_db
|
|
|
|
# OpenAI (for embeddings)
|
|
OPENAI_API_KEY=sk-your-api-key-here
|
|
|
|
# Logging
|
|
LOG_LEVEL=info
|