diff --git a/doc/02-Installation.md.d/From-Source.md b/doc/02-Installation.md.d/From-Source.md new file mode 100644 index 000000000..2efccfd15 --- /dev/null +++ b/doc/02-Installation.md.d/From-Source.md @@ -0,0 +1,20 @@ +# Installing Icinga Notifications from Source + +To install Icinga Notifications and get started, you first need to clone this repository. +```bash +git clone https://github.com/Icinga/icinga-notifications.git +``` + +Then, you can build both the daemon and all channels with the following commands. +```bash +go build -o icinga-notifications ./cmd/icinga-notifications-daemon +go build -o /usr/libexec/icinga-notifications/channels ./cmd/channel/... +``` + +Finally, launch the daemon. +```bash +./icinga-notifications --config config.yml +``` + + + \ No newline at end of file