mirror of https://github.com/rq/rq.git
713 B
713 B
Running docs locally
Install the following packages;
gem install jekyll
Then use;
jekyll serve
Using Vagrant
If you're a Vagrant user, you can use;
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"