Remove isolation part from documentation docs (#1671)

This commit is contained in:
Franck Nijhof 2023-02-08 10:02:51 +01:00 committed by GitHub
parent 4855ed80df
commit 2afea1546a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -66,17 +66,3 @@ The site generated by `bundle exec rake` is only available locally. If you are d
```shell ```shell
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 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
```