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