- Add Caddy reverse proxy for automatic HTTPS with Let's Encrypt - Update docker-compose.yml with Caddy service and internal networking - Remove all Redis dependencies (not needed for this deployment) - Fix Dockerfile permissions for instance and uploads directories - Move legacy scripts to old_code_documentation folder - add_muted_column.py, check_fix_player.py, migrate_add_edit_enabled.py - docker-start.sh, run_dev.sh, start.sh, clean_for_deployment.sh - Add HTTPS_SETUP.md documentation for Caddy configuration - Update .env.example with DOMAIN and EMAIL variables - Remove redis package from requirements.txt - Remove rate limiting Redis storage from config.py
48 lines
707 B
Plaintext
48 lines
707 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
|
|
|
|
# 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
|