Update documentation_index.md (#116)

* Update documentation_index.md

Consolidating a bit from README.

* Update documentation_index.md
This commit is contained in:
Glenn Waters 2018-10-08 06:20:40 -04:00 committed by Paulus Schoutsen
parent 442c932a4d
commit 0835937954

View File

@ -35,3 +35,16 @@ Site generated by `rake` is only available locally. If you are developing on a h
```bash ```bash
$ ssh -L 4000:localhost:4000 user_on_headless_machine@ip_of_headless_machine $ 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
```