docs: update building documentation

This commit is contained in:
Alexander Zobnin
2018-10-22 11:13:17 +03:00
parent 1d7ff38f31
commit 2cc1065e80
2 changed files with 36 additions and 67 deletions

View File

@@ -0,0 +1,33 @@
page_title: Run Grafana-Zabbix from master
page_description: Building instructions for Grafana-Zabbix.
# Run from master
If you want to build a package yourself, or contribute - here is a guide for how to do that.
### Dependencies
- NodeJS LTS
### Building plugin
```bash
npm install -g yarn
yarn install --pure-lockfile
yarn build
```
### To build plugin and rebuild on file change
```bash
yarn watch
```
### Run tests
```bash
yarn test
```
### Run tests on file change
```bash
yarn jest
```