Skip to content

Biano-AI/biano-ai.github.io

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

51 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Source codes for Biano AI public website/blog

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/ .

Development locally

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.