Set up this project to run locally. On Linux, macOS or Windows.
- Ruby - To install the project-scoped gems, including Jekyll.
- Bundler - Used to manage Ruby gem dependencies in an isolated directory, to preserve your global gems.
- Make - The docs here use the make command, which comes standard on macOS or Linux machine, but on Windows you need to download and install Make. Or, if you go to Makefile, you can look up the appropriate shell commands to run without
make
.
$ git clone [email protected]:MichaelCurrin/jekyll-gh-actions-quickstart.git
$ cd jekyll-gh-actions-quickstart
You can view the commands available in the Makefile or skip to the next step. Note that make
only works in macOS or Linux. Thought, it is optional, as you can run commands directly
$ make help
Install Ruby and Bundler globally - follow this gist.
Install local gems.
$ make install
Run this command if needed upgrade to the latest gems.
$ make upgrade
When you upgrade, the Gemfile.lock
file will be updated, if there are any changes. You can commit this to your own repo.