diff --git a/docs/en/next/installation.html b/docs/en/next/installation.html
index 6848c98954..94c5a077fb 100644
--- a/docs/en/next/installation.html
+++ b/docs/en/next/installation.html
@@ -99,14 +99,17 @@ directories: docs-examples-from-docusaurus
and website
Along with previously existing files and directories, your root directory will now contain a structure similar to:
root-directory
-├── docs-examples-from-docusaurus
+├── Dockerfile
+├── README.md
+├── docker-compose.yml
+├── docs
│ ├── doc1.md
│ ├── doc2.md
│ ├── doc3.md
│ ├── exampledoc4.md
│ └── exampledoc5.md
└── website
- ├── blog-examples-from-docusaurus
+ ├── blog
│ ├── 2016-03-11-blog-post.md
│ ├── 2017-04-10-blog-post-two.md
│ ├── 2017-09-25-testing-rss.md
@@ -125,14 +128,12 @@ directories: docs-examples-from-docusaurus
and website
described in the Installation section, you will have a
runnable, example website to use as your site's base. To run:
-In your root, rename docs-examples-from-docusaurus
to docs
.
cd website
-Rename blog-examples-from-docusaurus
to blog
.
From within the website
directory, run the local webserver using
yarn start
or npm start
.
Load the example site at http://localhost:3000 if it did not already open
-automatically.
-You should see the example site loaded in your web browser. There's also a LiveReload server running and any changes made to the docs and files in the website
directory will cause the page to refresh.
+automatically. If port 3000 has already been taken, another port will be used. Look at the console messages to see which.
+You should see the example site loaded in your web browser. There's also a LiveReload server running and any changes made to the docs and files in the website
directory will cause the page to refresh. A randomly generated primary and secondary theme color will be picked for you.

Launching the server behind a proxy
@@ -168,7 +169,7 @@ docusaurus 1.0.9
If you are finding that you are getting errors after your upgrade, try to either clear your Babel cache (usually it's in a temporary directory or run the Docusaurus server (e.g., yarn start
) with the BABEL_DISABLE_CACHE=1
environment configuration.
-Last updated on 2019-2-24 by Yangshun Tay