v1.0 - Version stable: multi-PC, détection UI-DETR-1, 3 modes exécution
- 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>
This commit is contained in:
30
visual_workflow_builder/backend/.env.example
Normal file
30
visual_workflow_builder/backend/.env.example
Normal file
@@ -0,0 +1,30 @@
|
||||
# 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
|
||||
Reference in New Issue
Block a user