new mcp servers format

This commit is contained in:
Davidson Gomes
2025-04-28 12:37:58 -03:00
parent 0112573d9b
commit e98744b7a4
7182 changed files with 4839 additions and 4998 deletions
+24
View File
@@ -0,0 +1,24 @@
# Configurações do banco de dados
POSTGRES_CONNECTION_STRING="postgresql://postgres:root@localhost:5432/evo_ai"
# Configurações de logging
LOG_LEVEL="INFO"
LOG_DIR="logs"
# Configurações do Redis
REDIS_HOST="localhost"
REDIS_PORT=6379
REDIS_DB=0
REDIS_PASSWORD="sua-senha-redis"
# TTL do cache de ferramentas em segundos (1 hora)
TOOLS_CACHE_TTL=3600
# Configurações da API
API_KEY="sua-api-key-gerada-automaticamente"
API_KEY_HEADER="X-API-Key"
# Configurações do Servidor
HOST="0.0.0.0"
PORT=8000
DEBUG=false