xmpp-webhook

webhook to xmpp gateway (clone of https://github.com/opthomas-prime/xmpp-webhook/ with my own mods)
git clone https://git.e1e0.net/xmpp-webhook.git
Log | Files | Refs | README | LICENSE

commit c6cc06d93f7d45186dccca4aa05c65e8719cad4f
parent 17c1205adad2540abb53a84ca88a808077f1af6c
Author: Thomas Maier <contact@thomas-maier.net>
Date:   Tue, 26 Sep 2017 15:34:48 +0200

adds vendoring

Diffstat:
M.gitignore | 2++
AGopkg.toml | 3+++
MREADME.md | 14++++++++++++++
3 files changed, 19 insertions(+), 0 deletions(-)

diff --git a/.gitignore b/.gitignore @@ -1,2 +1,4 @@ .vscode debug +vendor +Gopkg.lock diff --git a/Gopkg.toml b/Gopkg.toml @@ -0,0 +1,3 @@ +[[constraint]] + name = "github.com/emgee/go-xmpp" + revision = "efce8dbb971164aec26cb4d5805f0bca2f44b112" diff --git a/README.md b/README.md @@ -1,2 +1,16 @@ # xmpp-webhook Multipurpose XMPP Webhook (Built for Prometheus/Grafana Alerts) + + +some notes for later + +``` +XMPP_ID='bot@example.com' +XMPP_PASS='passw0rd' +XMPP_RECEIVERS='jdoe@example.com,ops@example.com' + +/etc/systemd/system/xmpp-webhook.service + +https://github.com/golang/dep +go get -u github.com/golang/dep/cmd/dep +```