- Added comprehensive dark mode styling to all pages: * Dashboard (workflow guide, secondary text, log items) * Admin panel with user management system * Content/playlist management page * Upload media page * Add player page - Implemented user management system: * Create/edit/delete users * Two role types (user/admin) * Reset password functionality * Role-based permissions - Replaced group assignment with playlist assignment: * Players now directly assigned to playlists * Updated add player form and backend * Removed group selection from player creation - Fixed bugs: * Updated instance_path configuration for SQLite * Fixed import path in app factory * Updated dependencies (Pillow 11.0.0, removed gevent) - Added start.sh script for easy development server launch
51 lines
757 B
Plaintext
51 lines
757 B
Plaintext
# Core Flask
|
|
Flask==3.1.0
|
|
Werkzeug==3.1.3
|
|
Jinja2==3.1.5
|
|
itsdangerous==2.2.0
|
|
click==8.1.8
|
|
|
|
# Flask Extensions
|
|
Flask-SQLAlchemy==3.1.1
|
|
Flask-Migrate==4.1.0
|
|
Flask-Bcrypt==1.0.1
|
|
Flask-Login==0.6.3
|
|
Flask-Caching==2.1.0
|
|
|
|
# Database
|
|
SQLAlchemy==2.0.37
|
|
alembic==1.14.1
|
|
|
|
# Redis (for caching in production)
|
|
redis==5.0.1
|
|
|
|
# Date parsing
|
|
python-dateutil==2.9.0
|
|
|
|
# File Processing
|
|
pdf2image==1.17.0
|
|
Pillow==11.0.0
|
|
ffmpeg-python==0.2.0
|
|
python-magic==0.4.27
|
|
|
|
# Security
|
|
bcrypt==4.2.1
|
|
Flask-Talisman==1.1.0
|
|
Flask-Cors==4.0.0
|
|
|
|
# Production Server
|
|
gunicorn==23.0.0
|
|
# gevent==23.9.1 # Commented out - not compatible with Python 3.13 yet
|
|
|
|
# Monitoring
|
|
psutil==6.1.0
|
|
|
|
# Utilities
|
|
python-dotenv==1.0.1
|
|
|
|
# Development
|
|
black==24.4.2
|
|
flake8==7.0.0
|
|
pytest==8.2.0
|
|
pytest-cov==5.0.0
|