rq/contrib/docs.md

803 B

title layout
Documentation contrib

Running docs locally

If you're running these docs on your local machine;

jekyll serve

Running docs on Vagrant

This requires several libraries, and you can keep these self contained by using Vagrant.

vagrant init ubuntu/trusty64
vagrant up
vagrant ssh -- "sudo apt-get -y install ruby-dev nodejs"
vagrant ssh -- "sudo gem install jekyll"
vagrant ssh -- "(cd /vagrant; jekyll serve)"

You'll also need to add a port forward entry to your Vagrantfile;

config.vm.network "forwarded_port", guest: 4000, host: 4001

Then you can access the docs using;

http://127.0.0.1:4001

You also may need to forcibly kill Jekyll if you ctrl+c;

vagrant ssh -- "sudo killall -9 jekyll"