From 6437d0cb10d8aa7fc7e46f07fea9daaca60f98d7 Mon Sep 17 00:00:00 2001 From: Philip Allgaier Date: Mon, 25 Jan 2021 15:09:16 +0100 Subject: [PATCH 1/2] Add note about listen IP --- README.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/README.md b/README.md index ad0bef4d82af..ed02d1fc2112 100644 --- a/README.md +++ b/README.md @@ -21,6 +21,12 @@ https://bundler.io/ 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](http://192.168.0.123:4000): + +```bash +bundle exec rake preview[192.168.0.123] +``` + ## 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. From 8d79b3b09bc8f1b5438712d66e9aa1075ac56d2d Mon Sep 17 00:00:00 2001 From: Philip Allgaier Date: Mon, 25 Jan 2021 17:05:39 +0100 Subject: [PATCH 2/2] Remove links --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index ed02d1fc2112..f12145124ebf 100644 --- a/README.md +++ b/README.md @@ -13,7 +13,7 @@ Setting up to contribute to documentation and the process for submitting pull re ## 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/ ) command: @@ -21,7 +21,7 @@ https://bundler.io/ 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](http://192.168.0.123:4000): +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]