Introduce a developer-only Hydrabase testing UI and backend WebSocket integration. Adds a simple dev-mode toggle (password 'hydratest') and new API endpoints (/api/dev-mode, /api/hydrabase/connect, /api/hydrabase/disconnect, /api/hydrabase/status, /api/hydrabase/send) that use websocket-client to connect/send raw JSON to a Hydrabase instance. Frontend changes include a Hydrabase nav/page, payload editors, response panel, dev-mode UI in Settings, associated JS handlers, CSS styling, and an icon asset. Also add websocket-client to requirements.
45 lines
No EOL
766 B
Text
45 lines
No EOL
766 B
Text
# SoulSync WebUI Requirements
|
|
# Docker-compatible requirements without PyQt6 dependencies
|
|
|
|
# Core web framework
|
|
Flask>=3.0.0
|
|
|
|
# Music service APIs
|
|
spotipy>=2.23.0
|
|
PlexAPI>=4.17.0
|
|
|
|
# HTTP and async support
|
|
requests>=2.31.0
|
|
aiohttp>=3.9.0
|
|
|
|
# Configuration management
|
|
python-dotenv>=1.0.0
|
|
|
|
# Security and encryption
|
|
cryptography>=41.0.0
|
|
|
|
# Media metadata handling
|
|
mutagen>=1.47.0
|
|
Pillow>=10.0.0
|
|
|
|
# Text processing
|
|
unidecode>=1.3.8
|
|
beautifulsoup4>=4.12.0
|
|
|
|
# System monitoring
|
|
psutil>=6.0.0
|
|
|
|
# YouTube support
|
|
yt-dlp>=2024.12.13
|
|
|
|
# Lyrics support
|
|
lrclibapi>=0.3.1
|
|
|
|
# Optional: MQTT support (for future features)
|
|
asyncio-mqtt>=0.16.0
|
|
|
|
# Audio fingerprinting for download verification
|
|
pyacoustid>=1.3.0
|
|
|
|
# WebSocket client for Hydrabase connection
|
|
websocket-client>=1.7.0 |