mirror of
https://github.com/OHV-IT/collabrix.git
synced 2025-12-15 16:48:36 +01:00
- Implement unread message indicators with Material-UI icons - Add BlinkingEnvelope component with theme-compatible colors - Create UnreadMessagesContext for managing unread states - Integrate WebSocket message handling for real-time notifications - Icons only appear for inactive channels/DMs, disappear when opened - Add test functionality (double-click to mark as unread) - Fix WebSocket URL handling for production deployment - Unify WebSocket architecture using presence connection for all messages
11 lines
246 B
Bash
Executable File
11 lines
246 B
Bash
Executable File
#!/bin/bash
|
|
|
|
cd /home/OfficeDesk/backend
|
|
|
|
echo "🚀 Starte Backend-Server..."
|
|
echo "📍 API: http://localhost:8000"
|
|
echo "📚 Docs: http://localhost:8000/docs"
|
|
echo ""
|
|
|
|
/bin/python -m uvicorn app.main:app --host 127.0.0.1 --port 8000 --reload
|