- Refresh app.py module and route docstrings for runtime settings, MP3 tagging, rate limiting, revision workflow, and admin actions. - Clarify config.py and models.py comments. - Update template comments/CSS for dashboard filters, request detail, player page, and settings page. - Rewrite README.md with current features, status flow, file layout, deployment variables, and troubleshooting. - Refresh REVIEW.md quick-reference. - Add MAX_REVISIONS to docker-compose.yml environment list. - Expand requirements.txt comment coverage. No version history or changelog included.
20 lines
525 B
Text
20 lines
525 B
Text
# requirements.txt
|
|
# ================
|
|
#
|
|
# Python dependencies for the Theme Song Booth Flask app.
|
|
#
|
|
# flask - web framework
|
|
# gunicorn - production WSGI server used by Dockerfile
|
|
# python-dotenv - loads .env files in development
|
|
# werkzeug - utilities for file uploads and secure filenames
|
|
# mutagen - MP3 metadata (ID3) tagging
|
|
# flask-limiter - public form rate limiting
|
|
# cryptography - encrypt stored SMTP password
|
|
|
|
flask
|
|
gunicorn
|
|
python-dotenv
|
|
werkzeug
|
|
mutagen
|
|
flask-limiter
|
|
cryptography
|