Sends chat messages to an XMPP account.
Run on Flask/Python3.
|
il y a 22 heures | |
---|---|---|
.gitignore | il y a 2 ans | |
LICENSE | il y a 2 ans | |
License | il y a 22 heures | |
README.md | il y a 1 mois | |
TODO.md | il y a 1 mois | |
config.py | il y a 1 mois | |
hooks.py | il y a 1 mois | |
wsgi.py | il y a 1 mois |
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'