Files
microdao-daarion/scripts/stop-all.sh
Apple 3de3c8cb36 feat: Add presence heartbeat for Matrix online status
- matrix-gateway: POST /internal/matrix/presence/online endpoint
- usePresenceHeartbeat hook with activity tracking
- Auto away after 5 min inactivity
- Offline on page close/visibility change
- Integrated in MatrixChatRoom component
2025-11-27 00:19:40 -08:00

17 lines
499 B
Bash
Executable File

#!/bin/bash
# ============================================================================
# Stop DAARION ALL-IN-ONE Stack
# Phase INFRA
# ============================================================================
echo "🛑 Stopping DAARION ALL-IN-ONE Stack..."
docker-compose -f docker-compose.all.yml down
echo ""
echo "✅ All services stopped"
echo ""
echo "To remove volumes (⚠️ WARNING: This will delete all data):"
echo " docker-compose -f docker-compose.all.yml down -v"
echo ""