The web site is created using the Jekyll Theme Just the Docs.
For local development, follow the Jekyll installation instructions.
Installing the latest version of ruby followed by gem install bundler should be enough.
Afterwards, run
bundle install
jekyll serve --livereload
and go to http://localhost:4000/ in your browser.
On Windows, using a dockerized environment is recommended:
docker build . -t madrjekyll
docker run -p 4000:4000 -it --rm --volume="C:\git-repositories\madr\docs":/srv/jekyll madrjekyll jekyll serve -H 0.0.0.0 -t
- With Ctrl+C you can stop the server (this is enabled by the
-itswitch). - In case you get errors regarding
Gemfile.lock, just deleteGemfile.lockand rerun. - The current
Dockerfileis based on https://github.com/just-the-docs/just-the-docs/blob/main/Dockerfile. The Jekyll Docker image did not work end of 20222 (because Ruby was too new).