avl-console 0.3.0

AVL Console - Advanced developer portal with AI Assistant, ML-powered monitoring and visual query builder
Documentation
# Example .env file for AVL Console
# Copy this to .env and adjust values for your environment

# Server Configuration
AVL_CONSOLE_BIND=127.0.0.1
AVL_CONSOLE_PORT=8080
AVL_CONSOLE_DEBUG=false

# Service Endpoints
AVL_AUTH_ENDPOINT=http://localhost:8001
AVL_AVILADB_ENDPOINT=http://localhost:8000
AVL_STORAGE_ENDPOINT=http://localhost:8002
AVL_OBSERVABILITY_ENDPOINT=http://localhost:8003

# Security
# IMPORTANT: Change this in production!
AVL_CONSOLE_SECRET=avl-console-secret-change-in-production

# CORS Configuration
AVL_CONSOLE_CORS_ORIGINS=http://localhost:8080,http://127.0.0.1:8080

# Rate Limiting
# Maximum requests per minute per user
AVL_CONSOLE_RATE_LIMIT=100

# WebSocket Configuration
# Ping interval in seconds
AVL_WS_PING_INTERVAL=30
# Maximum connections per user
AVL_MAX_WS_CONNECTIONS=10

# Static Files
AVL_STATIC_DIR=static
AVL_TEMPLATES_DIR=templates

# Logging
RUST_LOG=avl_console=info,tower_http=info