- 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>
49 lines
958 B
Markdown
49 lines
958 B
Markdown
# 🚀 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 !
|