39 lines
854 B
Plaintext
39 lines
854 B
Plaintext
# 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 JWT
|
|
JWT_SECRET_KEY="sua-chave-secreta-jwt"
|
|
JWT_ALGORITHM="HS256"
|
|
# Em minutos
|
|
JWT_EXPIRATION_TIME=30
|
|
|
|
# SendGrid
|
|
SENDGRID_API_KEY="sua-sendgrid-api-key"
|
|
EMAIL_FROM="noreply@yourdomain.com"
|
|
APP_URL="https://yourdomain.com"
|
|
|
|
# Configurações do Servidor
|
|
HOST="0.0.0.0"
|
|
PORT=8000
|
|
DEBUG=false
|
|
|
|
# Configurações de Seeders
|
|
ADMIN_EMAIL="admin@evoai.com"
|
|
ADMIN_INITIAL_PASSWORD="senhaforte123"
|
|
DEMO_EMAIL="demo@exemplo.com"
|
|
DEMO_PASSWORD="demo123"
|
|
DEMO_CLIENT_NAME="Cliente Demo"
|