Commit inicial - upload de todos os arquivos da pasta
This commit is contained in:
72
.env.example
Normal file
72
.env.example
Normal file
@@ -0,0 +1,72 @@
|
||||
API_TITLE="Evo API"
|
||||
API_DESCRIPTION="API para execução de agentes de IA"
|
||||
API_VERSION="1.0.0"
|
||||
API_URL="http://localhost:8000"
|
||||
|
||||
ORGANIZATION_NAME="Evo AI"
|
||||
ORGANIZATION_URL="https://evoai.evoapicloud.com"
|
||||
|
||||
# AI Engine configuration: "adk" or "crewai"
|
||||
AI_ENGINE="adk"
|
||||
|
||||
# Database settings
|
||||
POSTGRES_CONNECTION_STRING="postgresql://postgres:root@localhost:5432/evo_ai"
|
||||
|
||||
# Logging settings
|
||||
LOG_LEVEL="INFO"
|
||||
LOG_DIR="logs"
|
||||
|
||||
# Redis settings
|
||||
REDIS_HOST="localhost"
|
||||
REDIS_PORT=6379
|
||||
REDIS_DB=0
|
||||
REDIS_PASSWORD="your-redis-password"
|
||||
REDIS_SSL=false
|
||||
REDIS_KEY_PREFIX="a2a:"
|
||||
REDIS_TTL=3600
|
||||
|
||||
# Tools cache TTL in seconds (1 hour)
|
||||
TOOLS_CACHE_TTL=3600
|
||||
|
||||
# JWT settings
|
||||
JWT_SECRET_KEY="your-jwt-secret-key"
|
||||
JWT_ALGORITHM="HS256"
|
||||
# In seconds
|
||||
JWT_EXPIRATION_TIME=3600
|
||||
|
||||
# Encryption key for API keys
|
||||
ENCRYPTION_KEY="your-encryption-key"
|
||||
|
||||
# Email provider settings
|
||||
EMAIL_PROVIDER="sendgrid"
|
||||
|
||||
# SendGrid
|
||||
SENDGRID_API_KEY="your-sendgrid-api-key"
|
||||
EMAIL_FROM="noreply@yourdomain.com"
|
||||
|
||||
# SMTP settings
|
||||
SMTP_HOST="your-smtp-host"
|
||||
SMTP_FROM="noreply-smtp@yourdomain.com"
|
||||
SMTP_USER="your-smtp-username"
|
||||
SMTP_PASSWORD="your-smtp-password"
|
||||
SMTP_PORT=587
|
||||
SMTP_USE_TLS=true
|
||||
SMTP_USE_SSL=false
|
||||
|
||||
APP_URL="https://yourdomain.com"
|
||||
|
||||
LANGFUSE_PUBLIC_KEY="your-langfuse-public-key"
|
||||
LANGFUSE_SECRET_KEY="your-langfuse-secret-key"
|
||||
OTEL_EXPORTER_OTLP_ENDPOINT="https://cloud.langfuse.com/api/public/otel"
|
||||
|
||||
# Server settings
|
||||
HOST="0.0.0.0"
|
||||
PORT=8000
|
||||
DEBUG=false
|
||||
|
||||
# Seeder settings
|
||||
ADMIN_EMAIL="admin@evoai.com"
|
||||
ADMIN_INITIAL_PASSWORD="strongpassword123"
|
||||
DEMO_EMAIL="demo@example.com"
|
||||
DEMO_PASSWORD="demo123"
|
||||
DEMO_CLIENT_NAME="Demo Client"
|
||||
Reference in New Issue
Block a user