Sends chat messages to an XMPP account.
Run on Flask/Python3.
|
1 هفته پیش | |
---|---|---|
.gitignore | 2 سال پیش | |
LICENSE | 2 سال پیش | |
README.md | 1 هفته پیش | |
TODO.md | 1 هفته پیش | |
config.py | 1 هفته پیش | |
hooks.py | 1 هفته پیش | |
wsgi.py | 1 هفته پیش |
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'