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

DeadTOm 10fab08094 Fixed formatting problem in README.md hai 2 meses
.gitignore cf0162ff47 Update '.gitignore' %!s(int64=2) %!d(string=hai) anos
LICENSE 0be937f658 Added work so far. %!s(int64=2) %!d(string=hai) anos
README.md 10fab08094 Fixed formatting problem in README.md hai 2 meses
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. hai 2 meses
config.py 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. hai 2 meses
hooks.py 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. hai 2 meses
wsgi.py 2b9e090d18 Update 'wsgi.py' hai 2 meses

README.md

DeadTOm's Owncast webhooks

Features so far

  • Sends chat messages 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'