rq/README.md

44 lines
713 B
Markdown
Raw Normal View History

2014-09-08 11:04:58 +00:00
### Running docs locally
Install the following packages;
```
gem install jekyll
```
Then use;
```
jekyll serve
```
### Using Vagrant
If you're a [Vagrant](https://www.vagrantup.com/) 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"
```