kickstart-flavor-jekyll

kickstart-flavor-jekyll

SSG Generator jekyll project

kickstart-flavor Jekyll :: Apache2, Jekyll Static Site Generator

see (http://github.com/infracamp/kickstart) for more information.

Document Index:

Tags

Use -min images in Dockerfile and main image in .kick.yml

Tag OS Branch CKit Docs
1.0 Ubuntu 20.04 (LTS) 1.0-stable 1.4 Readme
2.0 Ubuntu 22.04 (LTS) release/2.0 1.4 Readme
2.1 Ubuntu 22.04 (LTS) release/2.1 1.5 Readme
unstable Ubuntu 20.04 (master), PHP8 main unstable Readme

Kickstart uses a fixed version of Ckit to keep the features freeze within a version.

Usage

Demo .kick.yml

version: 1
from: "ghcr.io/nfra-project/kickstart-flavor-jekyll:1.0"
ports: "80;4000;4100"

command:
  build:
    - "jekyll build -s /opt/docs -d /var/www/html"
  
  sass:
    - "sass /opt/docs/_scss/theme.scss /opt/docs/assets/theme.css"
  
  dev:
    - "jekyll serve -s /opt/docs -d /var/www/html --livereload --port 4000 --livereload-port 4100 --host 0.0.0.0"

Resources:

Faq

Jekyll takes very long to compile page (>3 sec)

This might be because of sass compiling. Instead of using the buildin compiler just run the sass command specified above.

sass [input] [output]