Files
rpa_vision_v3/docs/guides/QUICK_START_SERVER.md
Dom a27b74cf22 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>
2026-01-29 11:23:51 +01:00

958 B

🚀 Quick Start - Serveur RPA Vision V3

Démarrage en 3 Commandes

# 1. Installer les dépendances (si pas déjà fait)
pip install fastapi 'uvicorn[standard]' python-multipart flask cryptography

# 2. Démarrer le serveur
./server/start_all.sh

# 3. Ouvrir le dashboard
xdg-open http://localhost:5001

URLs

Test Rapide

# Test API
curl http://localhost:8000/api/traces/status

# Upload une session
curl -X POST http://localhost:8000/api/traces/upload \
  -F "file=@session.zip.enc" \
  -F "session_id=test_001"

Tests Automatisés

pytest tests/integration/test_server_pipeline.py -v
# Résultat: 5/5 tests passent ✅

Documentation Complète

  • Guide de test: SERVER_TESTING_GUIDE.md
  • Documentation: SERVER_COMPLETE.md
  • Prêt pour test: SERVER_READY_TO_TEST.md

Statut: Prêt pour les tests !