Skip to content
This repository was archived by the owner on Apr 23, 2026. It is now read-only.

Latest commit

 

History

History
53 lines (31 loc) · 1.35 KB

File metadata and controls

53 lines (31 loc) · 1.35 KB

Installation

Requirements

For convenience, this project used GNU Make, which is standard on Linux and macOS. If you do not have it on Windows, you can skip make commands and use the more verbose commands supplied in the docs of this project.

Install system dependencies

Install Ruby.

Install Bundler as gem for your user.

$ gem install bundler --user-install

Some people prefer to omit the --user-install flag, but, then you need access to install to a shared /usr/lib/ruby directory, which could require use of sudo to run the gem command. In that case, rather change permissions on /usr/lib/ruby directory to be writable by all users, so you never have to run sudo gem ....

Clone

Clone the repo or your repo copied from the template.

$ git clone git@github.com:MichaelCurrin/jekyll-actions-quickstart.git
$ cd jekyll-actions-quickstart

Install project packages

If you want to use make:

$ make install

Or configure Bundler in your project.

$ bundle config set --local path vendor/bundle

Then install project dependencies using Bundler. This will include Jekyll 4.

$ bundle install