From 083593795402242ba5bde2ded1605382f473d5e8 Mon Sep 17 00:00:00 2001 From: Glenn Waters Date: Mon, 8 Oct 2018 06:20:40 -0400 Subject: [PATCH] Update documentation_index.md (#116) * Update documentation_index.md Consolidating a bit from README. * Update documentation_index.md --- docs/documentation_index.md | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/docs/documentation_index.md b/docs/documentation_index.md index 09e15302..97292293 100644 --- a/docs/documentation_index.md +++ b/docs/documentation_index.md @@ -35,3 +35,16 @@ Site generated by `rake` is only available locally. If you are developing on a h ```bash $ ssh -L 4000:localhost:4000 user_on_headless_machine@ip_of_headless_machine ``` +## Speeding up site generation + +Every release we post long changelogs to the website. This slows down generation of the website significantly! We include some tools to temporarily exclude components and blog posts that you're not working on out of the way. + +```bash +bundle exec rake isolate[filename-of-blogpost-or-component] +``` + +When you're done working on the site, run the following command to move the pages back again: + +```bash +bundle exec rake integrate +```