From 2afea1546ace928b82b2a94a433347de643518f2 Mon Sep 17 00:00:00 2001 From: Franck Nijhof Date: Wed, 8 Feb 2023 10:02:51 +0100 Subject: [PATCH] Remove isolation part from documentation docs (#1671) --- docs/documenting.md | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/docs/documenting.md b/docs/documenting.md index eac73abf..0f8f7aef 100644 --- a/docs/documenting.md +++ b/docs/documenting.md @@ -66,17 +66,3 @@ The site generated by `bundle exec rake` is only available locally. If you are d ```shell 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 a bit. We've included some tools to temporarily exclude integrations and blog posts that you're not working on out of the way. - -```shell -bundle exec rake isolate[filename-of-blogpost-or-integration] -``` - -When you're done working on the site, run the following command to move the pages back again: - -```shell -bundle exec rake integrate -```