This repository has been archived on 2026-09-04. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
theme-song-booth/requirements.txt
Troll (Hermes Agent) a56f6e498b feat: add ntfy push notifications for new requests
- Add ntfy server/topic settings in /admin/settings next to Hermes API key
- POST a push notification to the configured topic on every new customer request
- Add a Send Test ntfy button to verify configuration
- Add requests dependency for ntfy HTTP calls
- Bump version to 0.5.6
2026-08-07 17:14:02 +00:00

21 lines
534 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
requests