Skip to content

CiscoCloud/vaquero-docs

Repository files navigation

vaquero-docs

Documentation for the Vaquero project: https://github.com/CiscoCloud/vaquero

Website: https://ciscocloud.github.io/vaquero-docs

How to modify the documentation

Updates to this repo automatically generate new documentation which will be published as static assets to using the GitHub Pages functionality. The documentation will be published according to these rules:

Local Development

Install Ruby

RVM is a great tool for this. Follow the install instructions and then install the version in the .ruby-version file.

rvm install 2.4.2

Setup a gemset so your gems are isolated

rvm create gemset vqdocs

Install bundler

gem install bundler

Install gems (from the Gemfile file)

bundle install

Start jekyll to see the site

jekyll serve

View in your browser

http://localhost:4000

Make changes and jekyll will rebuild the site automatically.