docs: update comments and README to reflect current feature set
- 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.
This commit is contained in:
parent
14ed80fe4b
commit
4af9322c9d
11 changed files with 148 additions and 111 deletions
|
|
@ -3,10 +3,13 @@
|
|||
#
|
||||
# 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 password hashing
|
||||
# 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
|
||||
|
|
|
|||
Reference in a new issue