- Go language environment (>= 1.7)
- RRDtool library and development files (>= 1.4.0)
- pkg-config helper tool
- Node.js and "npm" package manager
- Pandoc document converter
Debian/Ubuntu:
apt-get install build-essential golang-go librrd-dev pkg-config npm nodejs-legacy pandoc
Mac OS X (with brew):
brew install go rrdtool pkg-config npm pandoc
Run the building command:
cd facette
make
make install
By default Facette will be built in the build
directory and installed in the /usr/local
one. To change the
installation directory set the PREFIX
variable:
sudo make PREFIX=/path/to/directory install
Once installed, follow the configuration steps described here: http://docs.facette.io/latest/configuration/
Run the various test suites:
make test
Clean the building environment:
make clean