librenms-librenms/doc/General/Developing-for-LibreNMS.md

20 lines
765 B
Markdown
Raw Normal View History

2014-01-24 19:44:21 -08:00
Developing for LibreNMS has never been easier.
2014-01-25 13:52:57 -08:00
Thanks to [Wes Kennedy](https://twitter.com/livearchivist), there is
2014-01-24 19:44:21 -08:00
now a vagrant file that will allow you to install a virtual machine
that has LibreNMS already running on it!
To get started, you can just copy the script from `/contrib/dev_init`,
or you can enter the following commands into your shell:
2015-01-10 00:10:51 +00:00
```
2014-01-24 19:44:21 -08:00
mkdir -p dev/librenms && cd $_
curl -O http://wkennedy.co/uploads/librenms/Vagrantfile
curl -O http://wkennedy.co/uploads/librenms/bootstrap.sh
chmod +x bootstrap.sh
vagrant up
```
This may take a few minutes and requires you to already have Vagrant
installed. If you don't have Vagrant installed, it's easy to setup.
2015-01-10 00:10:51 +00:00
See the [installation instructions here](http://docs.vagrantup.com/v2/installation/).