This is the source for the openastronomy.github.io website
To build the site locally, you will need jekyll to be installed. Clone this repository locally, then inside it, type:
gem install bundler
bundler installor use:
bundle install --path vendor/bundleto install the dependencies locally at vendor/bundle.
You can then build the website with:
bundle exec jekyll buildTo view the site locally, you will then need to run:
bundle exec jekyll servethis will track the changes and rebuild automatically. However, it won't reflect changes on _config.yaml
Note that this uses a submodule to complete the build process of the site. So you may need to do:
git submodule init
git submodule updatein a fresh clone, or just the second line to update the submodule.