easy-jekyll-starter

easy-jekyll-starter

🧪A (lightly) opinionated Jekyll starter designed to replace jekyll new

easy-jekyll-starter

Hey there! This is a simple template repository for Jekyll. It does two simple things over jekyll new ...:

  • by default, ejects minima from its gem wrapper; this makes it easier to see what Jekyll is doing under the hood, and makes it easy to build your own theme
  • adds two workflows for GitHub Actions:
    1. a test action that builds the site on PR/push
    2. an action to deploy to GitHub Pages off of main. Thanks to helaili/jekyll-action, this works out of the box with no secrets required

Other than that, I basically leave minima untouched.

For more information, read this post!

Development Setup

Quick setup:

$ bundle
$ rake serve
bundle exec jekyll serve
Configuration file: /Users/malsf21/code/easy-jekyll-starter/_config.yml
            Source: /Users/malsf21/code/easy-jekyll-starter
       Destination: /Users/malsf21/code/easy-jekyll-starter/_site
 Incremental build: disabled. Enable with --incremental
      Generating...
       Jekyll Feed: Generating feed for posts
                    done in 0.561 seconds.
 Auto-regeneration: enabled for '/Users/malsf21/code/easy-jekyll-starter'
    Server address: http://127.0.0.1:4000/easy-jekyll-starter/
  Server running... press ctrl-c to stop.

Or,

$ rake build

For more information, see this post!