Bleeding edge Icinga Web 2 libraries
Go to file
Thomas Gelf db904b95ba composer: raise dependencies 2021-11-11 16:41:09 +01:00
bin make-relase: push --set-upstream 2021-11-05 14:03:41 +01:00
public release: ship JS and CSS 2020-10-08 15:54:47 +02:00
vendor Initial import 2018-11-06 12:44:10 +01:00
.gitignore gitignore: js, less 2020-10-08 18:30:42 +02:00
LICENSE LICENSE: add MIT license file 2019-05-16 17:26:25 +02:00
README.md README: prepare v0.9.0 2021-11-11 16:04:59 +01:00
composer.json composer: raise dependencies 2021-11-11 16:41:09 +01:00
configuration.php make-release: preserve less files 2020-11-30 16:51:43 +01:00
extendStyles.php extendStyles: todo has been done 2020-10-10 03:41:45 +02:00
module.info composer: raise gipfl/icinga-bundles 2020-10-08 19:23:18 +02:00
run.php release: ship JS and CSS 2020-10-08 15:54:47 +02:00

README.md

Icinga Web 2 - Incubator

This repository ships bleeding edge libraries useful for Icinga Web 2 modules. Please download the latest release and install it like any other module.

HINT: Do NOT install the GIT master, it will not work! Checking out a branch like stable/0.9.0 or a tag like v0.9.0 is fine.

Sample Tarball installation

MODULE_NAME=incubator
MODULE_VERSION=v0.9.0
MODULES_PATH="/usr/share/icingaweb2/modules"
MODULE_PATH="${MODULES_PATH}/${MODULE_NAME}"
RELEASES="https://github.com/Icinga/icingaweb2-module-${MODULE_NAME}/archive"
mkdir "$MODULE_PATH" \
&& wget -q $RELEASES/${MODULE_VERSION}.tar.gz -O - \
   | tar xfz - -C "$MODULE_PATH" --strip-components 1
icingacli module enable "${MODULE_NAME}"

Sample GIT installation

MODULE_NAME=incubator
MODULE_VERSION=v0.9.0
REPO="https://github.com/Icinga/icingaweb2-module-${MODULE_NAME}"
MODULES_PATH="/usr/share/icingaweb2/modules"
git clone ${REPO} "${MODULES_PATH}/${MODULE_NAME}" --branch "${MODULE_VERSION}"
icingacli module enable "${MODULE_NAME}"

Developer Documentation

Add a new dependency

composer require author/library:version

Create a new release

./bin/make-release.sh <version>

e.g.

./bin/make-release.sh 0.9.0