Sends chat messages to an XMPP account.
Run on Flask/Python3.
|
vor 1 Woche | |
---|---|---|
.gitignore | vor 2 Jahren | |
LICENSE | vor 2 Jahren | |
README.md | vor 1 Woche | |
TODO.md | vor 1 Woche | |
config.py | vor 1 Woche | |
hooks.py | vor 1 Woche | |
wsgi.py | vor 1 Woche |
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'