Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.48 KB

readme.md

File metadata and controls

30 lines (21 loc) · 1.48 KB

Roboconf's Web Site

Build Status License Join us on Gitter.im Web site

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.

Roboconf's web site overview

Building the Web Site

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 -w to run a web server locally.
  • bundle exec jekyll build to simply generate static HTML files.
  • sudo bundle install to resolve problems about missing gems or dependencies.

You will find more information on Github's web site.