This repository contains the source code for the Biano AI public blog (it is a simple static page created by Jekyll). The site is automatically published using Github Pages at https://biano-ai.github.io/ .
Run the Jekyll Docker image in the root of the project directory:
docker run --rm \
--volume="$(pwd):/srv/jekyll" \
-p 127.0.0.1:8080:4000/tcp \
-it \
jekyll/jekyll:latest \
jekyll serve --watch --force_polling --incremental --livereload --disable-disk-cache
Now open in a browser: http://localhost:8080/.
👉 Note: Automatic reload after a change doesn't seem to work on Windows.