Get up and running with a minimal Jekyll site scaffold
- Clone or use this template.
gh repo clone advaitchaitanya/jekyll-up
- Install Jekyll.
gem install jekyll bundler
- Install gems inside the
jekyll-up
directory.
bundle install
- Install npm packages.
npm install
We use npm scripts for managing the Jekyll build, linting JavaScript, and deploying to GitHub Pages. Jekyll itself takes care of compiling our Sass and minifing both the HTML and CSS files.
npm start
npm run build
Lint main.js
using JavaScript Standard Style.
npm run test
npm run deploy