To run the site locally on your own computer (most helpful for previewing your own changes), you will need to install Jekyll and other dependencies:
- If you don't already have Ruby and Bundler installed, follow the first two steps in these Jekyll installation instructions.
- Next, fork this repository and clone it on your computer.
- Navigate to the folder on your computer, and run the command
bundle install
at the command line prompt.
To run the site locally, run jekyll serve --watch
, then visit http://localhost:4000/
in your browser to preview the site.
This project uses Sass for managing its style sheets. These styles are defined in the styles.scss
file. We use Jekyll's native SASS support to auto-generate the required CSS when you run the site locally, as described above.