25 lines
526 B
Plaintext
25 lines
526 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 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
|