README.md
August 5, 2020 ยท View on GitHub
Nick's Notes
This repository contains the source code for the knowledge repository hosted at notes.nickbelzer.me.
Getting started
These instructions should get you started running a local copy on your own machine.
Prerequisites
- Ruby
- You can install it through brew (
brew install ruby) on MacOS.
- You can install it through brew (
- Bundler
- Jekyll
- You can install both through:
gem install bundler jekyll.
- You can install both through:
- Node.js
- Personally I manage my node versions through n. Can be installed through brew (
brew install n) on MacOS.
- Personally I manage my node versions through n. Can be installed through brew (
- npm
Installation
bundle installto install Ruby gems.npm cito install npm packages listed inpackage-lock.json.npm run startornpm run devto compile the site with development settings and run BrowserSync.
Building
npm run build:devto compile the site with development settingsnpm run build:productionornpm run buildto compile the site for production
Deploy
Use npm run build or npm run build:production.
Acknowledgements
- taylorbryant/jekyll-starter-tailwind - Base setup for the repo with TailwindCSS.