translate to english

This commit is contained in:
Davidson Gomes
2025-04-28 20:04:51 -03:00
parent c3baa54215
commit 215e76012e
54 changed files with 3269 additions and 3460 deletions
+14 -14
View File
@@ -1,38 +1,38 @@
# Configurações do banco de dados
# Database settings
POSTGRES_CONNECTION_STRING="postgresql://postgres:root@localhost:5432/evo_ai"
# Configurações de logging
# Logging settings
LOG_LEVEL="INFO"
LOG_DIR="logs"
# Configurações do Redis
# Redis settings
REDIS_HOST="localhost"
REDIS_PORT=6379
REDIS_DB=0
REDIS_PASSWORD="sua-senha-redis"
REDIS_PASSWORD="your-redis-password"
# TTL do cache de ferramentas em segundos (1 hora)
# Tools cache TTL in seconds (1 hour)
TOOLS_CACHE_TTL=3600
# Configurações JWT
JWT_SECRET_KEY="sua-chave-secreta-jwt"
# JWT settings
JWT_SECRET_KEY="your-jwt-secret-key"
JWT_ALGORITHM="HS256"
# Em minutos
# In minutes
JWT_EXPIRATION_TIME=30
# SendGrid
SENDGRID_API_KEY="sua-sendgrid-api-key"
SENDGRID_API_KEY="your-sendgrid-api-key"
EMAIL_FROM="noreply@yourdomain.com"
APP_URL="https://yourdomain.com"
# Configurações do Servidor
# Server settings
HOST="0.0.0.0"
PORT=8000
DEBUG=false
# Configurações de Seeders
# Seeder settings
ADMIN_EMAIL="admin@evoai.com"
ADMIN_INITIAL_PASSWORD="senhaforte123"
DEMO_EMAIL="demo@exemplo.com"
ADMIN_INITIAL_PASSWORD="strongpassword123"
DEMO_EMAIL="demo@example.com"
DEMO_PASSWORD="demo123"
DEMO_CLIENT_NAME="Cliente Demo"
DEMO_CLIENT_NAME="Demo Client"