- 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
16 lines
195 B
Bash
16 lines
195 B
Bash
#!/bin/bash
|
|
|
|
# Stop City and Space services
|
|
|
|
set -e
|
|
|
|
echo "🛑 Stopping DAARION City + Space Services..."
|
|
|
|
docker-compose -f docker-compose.city-space.yml down
|
|
|
|
echo "✅ Services stopped!"
|
|
|
|
|
|
|
|
|