47 lines
945 B
Markdown
47 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)
|
||
|
|
|