Sends chat messages to an XMPP account.
Run on Flask/Python3.

deadtom 4cd5b6dbd0 Add 'License' před 2 týdny
.gitignore cf0162ff47 Update '.gitignore' před 2 roky
LICENSE 0be937f658 Added work so far. před 2 roky
License 4cd5b6dbd0 Add 'License' před 2 týdny
README.md 30660164fb Change description před 1 měsícem
TODO.md 5797d06d76 Filled in README.md. Edited TODO.md as things were completed. Changed how config.py is imported in hooks.py, and how variables from config.py are called. Edited config.py accordingly. Comments all around. před 1 měsícem
config.py 9c314788af Update 'config.py' před 1 měsícem
hooks.py 0e728ba8b8 Updated to work with the latest version of slixmpp před 1 měsícem
wsgi.py 2b9e090d18 Update 'wsgi.py' před 1 měsícem

README.md

DeadTOm's Owncast webhooks

Features so far

  • Sends messages from Owncast chat to an XMPP account.

Starting the Flask app

Start from the folder where the app lives. My preferred method is gunicorn, with the following command:

gunicorn -b 0.0.0.0:8057 -w 1 'hooks:app'

Or if running from a virtual environment, which you should be, use this command (change path as needed):

.venv/bin/python -m gunicorn -b 0.0.0.0:8057 -w 1 'hooks:app'