Add note about listen IP to README (#16307)

This commit is contained in:
Philip Allgaier 2021-01-25 17:26:39 +01:00 committed by GitHub
parent 154dbfa37a
commit 2c63363626
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -13,7 +13,7 @@ Setting up to contribute to documentation and the process for submitting pull re
## Site preview ## Site preview
In order to make the preview available on [http://127.0.0.1:4000](http://127.0.0.1:4000), use the following [bundler]( In order to make the preview available on `http://127.0.0.1:4000`, use the following [bundler](
https://bundler.io/ https://bundler.io/
) command: ) command:
@ -21,6 +21,12 @@ https://bundler.io/
bundle exec rake preview bundle exec rake preview
``` ```
If the preview is not running on your local machine, pass the IP of the target machine from where it should be served as a parameter, i.e. to access on `http://192.168.0.123:4000`:
```bash
bundle exec rake preview[192.168.0.123]
```
## Speeding up site generation ## 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 the blog posts that you're not working on out of the way. Every release we post long changelogs to the website. This slows down generation of the website significantly! We include some tools to temporarily exclude the blog posts that you're not working on out of the way.