- Frontend v4 accessible sur réseau local (192.168.1.40) - Ports ouverts: 3002 (frontend), 5001 (backend), 5004 (dashboard) - Ollama GPU fonctionnel - Self-healing interactif - Dashboard confiance Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
31 lines
681 B
Plaintext
31 lines
681 B
Plaintext
# Flask Configuration
|
|
FLASK_ENV=development
|
|
SECRET_KEY=your-secret-key-here-change-in-production
|
|
PORT=5001
|
|
|
|
# Database
|
|
DATABASE_URL=sqlite:///workflows.db
|
|
# For production, use PostgreSQL:
|
|
# DATABASE_URL=postgresql://user:password@localhost:5432/visual_workflows
|
|
|
|
# Redis (for caching and session management)
|
|
REDIS_URL=redis://localhost:6379/0
|
|
|
|
# CORS Origins (comma-separated)
|
|
CORS_ORIGINS=http://localhost:3000,http://localhost:8080
|
|
|
|
# RPA Vision V3 Integration
|
|
RPA_VISION_API_URL=http://localhost:8000
|
|
|
|
# Logging
|
|
LOG_LEVEL=INFO
|
|
LOG_FILE=logs/app.log
|
|
|
|
# Security
|
|
MAX_WORKFLOW_SIZE=1000
|
|
MAX_EXECUTION_TIME=1800
|
|
RATE_LIMIT_PER_MINUTE=100
|
|
|
|
# WebSocket
|
|
SOCKETIO_ASYNC_MODE=threading
|