Skip to content

Latest commit

 

History

History
21 lines (15 loc) · 1.03 KB

README.md

File metadata and controls

21 lines (15 loc) · 1.03 KB

Website for afutureforbabies.org

This site was built with Jekyll and is hosted using Github Pages.

Development

This project is using the official Jekyll Docker image for local development. There's no reason why you couldn't use your machine's local version of Jekyll, but using the Docker image ensures that every developer is using the same Ruby, Gems, and Jekyll versions.

Compiling and serving the site locally is as simple as running docker-compose:

$ cd afutureforbabies.org
$ git flow init -d
$ docker-compose up
$ open http://localhost/

The Docker image loads and runs the equivalent of bundle exec jekyll serve. The Jekyll service listens on port 4000, but we've mapped it to port 80 on the host machine.

Notes

  • The main Sass file is stored in <source>/assets/main.scss. More info.
  • All Sass partials should be stored in the <source>/_sass directory. More info.