Shopify's Open Source page is build with Jekyll and Sass and hosted on GitHub Pages.
- Clone this branch or download the zip and navigate to the folder in terminal
- Install Jekyll:
gem install jekyll - Install Sass:
gem install sass- Use
sass -vto make sure it worked
- Use
- Install Compass:
gem install compass - Make sure everything is setup with
bundle install - Run
jekyll serve --watch - In another terminal window, run
compass watch - Access the docs at
http://localhost:4000
jerkyll serve --watchwill compile the Jekyll and Sass files into static assets in the _site folder each time a file is saved. That folder is excluded from the repo.compass watchwill update ie.css and main.css.- Use
rake buildto manually parse SCSS files. - There is no easy way to use Jekyll plugins with GitHub pages, so none are used here.