Sends chat messages to an XMPP account.
Run on Flask/Python3.
|
před 1 týdnem | |
---|---|---|
.gitignore | před 2 roky | |
LICENSE | před 2 roky | |
README.md | před 1 týdnem | |
TODO.md | před 1 týdnem | |
config.py | před 1 týdnem | |
hooks.py | před 1 týdnem | |
wsgi.py | před 1 týdnem |
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'