Skip to content

How to run chti.octo.com locally

Marine Verwaerde edited this page May 10, 2023 · 1 revision

With Jekyll on your laptop

  1. First, you must follow install tutorial
  2. Start Jekyll Server :
    • Go to root folder
    • Execute :
bundle exec jekyll serve --livereload
  1. Go to http://localhost:4000/

NOTE : This commands is a live-reload commands, every change you make on your code will be apply directly on server.

With Docker

You can run Jekyll server on docker without installing Ruby or Jekyll on your laptop

  1. What you need to install:

    • docker
    • docker-compose
  2. Then run the following command:

docker-compose up --build
  1. Go to http://localhost:4000/

NOTE : This commands is a live-reload commands, every change you make on your code will be apply directly on server.

Clone this wiki locally