# 🚀 Quick Start - Serveur RPA Vision V3 ## DĂ©marrage en 3 Commandes ```bash # 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 - **API:** http://localhost:8000 - **Dashboard:** http://localhost:5001 ## Test Rapide ```bash # 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 ```bash 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 !