This repository contains the sources for Roboconf's web site.
On every commit, a routine is executed. It generates static HTML files and hosts
them on GitHub pages.
To build the web site locally, you can use Docker...
cd roboconf.github.io/
docker run --rm --label=jekyll --volume=$(pwd):/srv/jekyll -it -p 4000:4000 jekyll/jekyll jekyll serve
... or you can install Jekyll directly on your machine.
Then, use...
bundle exec jekyll serve -wto run a web server locally.bundle exec jekyll buildto simply generate static HTML files.sudo bundle installto resolve problems about missing gems or dependencies.
You will find more information on Github's web site.
