# General information The current documentation uses [Jekyll](https://jekyllrb.com/docs) as the static site generator. [Docker](https://www.docker.com/) is required to run the project. # How to run For faster development process, the following command is recommended: ```shell $ docker run --rm --volume="$PWD/htdocs:/srv/jekyll" -p 4000:4000 -p 35729:35729 -it jekyll/jekyll:4.2.0 jekyll serve --profile --incremental --livereload ``` Note: the port 35729 is used for live reload Or you could use: ```shell $ docker run --rm --volume="$PWD/htdocs:/srv/jekyll" -p 4000:4000 -it jekyll/jekyll:4.2.0 jekyll serve ```