veza/docs/archive/root-md/STATUS_INFRA.md
senke 43af35fd93 chore(audit 2.2, 2.3): nettoyer .md et .json à la racine
- Archiver 131 .md dans docs/archive/root-md/
- Archiver 22 .json dans docs/archive/root-json/
- Conserver 7 .md utiles (README, CONTRIBUTING, CHANGELOG, etc.)
- Conserver package.json, package-lock.json, turbo.json
- Ajouter README d'index dans chaque archive
2026-02-15 14:35:08 +01:00

46 lines
945 B
Markdown

# ✅ Status Infrastructure - Veza
## 🐳 Containers Docker
```bash
docker compose ps
```
**Status actuel** (après `make infra-up`):
-`veza_postgres` - **healthy** (port 5432)
-`veza_redis` - **healthy** (port 6379)
-`veza_rabbitmq` - **healthy** (ports 5672, 15672)
---
## 🔍 Vérification Rapide
### 1. PostgreSQL
```bash
docker compose exec postgres psql -U veza -d veza -c "SELECT version();"
```
### 2. Redis
```bash
docker compose exec redis redis-cli ping
# Devrait retourner: PONG
```
### 3. RabbitMQ
```bash
curl -u veza:password http://localhost:15672/api/overview
```
---
## 🚀 Prochaines Étapes
1. ✅ Infrastructure démarrée
2. ⏭️ Démarrer le backend: `cd veza-backend-api && go run cmd/api/main.go`
3. ⏭️ Démarrer le frontend: `cd apps/web && npm run dev`
4. ⏭️ Tester: http://localhost:3000
---
**Dernière mise à jour**: Après résolution du conflit Redis (service système)