diff --git a/docs/en/installation.html b/docs/en/installation.html index 3440296528..7d9380ae9a 100644 --- a/docs/en/installation.html +++ b/docs/en/installation.html @@ -9,8 +9,9 @@
yarn global add docusaurus-init
or npm install --global docusaurus-init
docusaurus-init
Along with previously existing files and directories, your root directory will now contain a structure similar to:
root-of-repo
├── docs-examples-from-docusaurus
│ └── doc1.md
@@ -34,6 +35,16 @@
If you do not want to install the init script globally, you can install it locally and then run it via npx docusaurus-init
or from the node_modules
directory that is created via ./node_modules/.bin/docusaurus-init
. You may want to remove the created package.json
file and node_modules
directory after you run the script.
+Verifying Installation
+Running the Docusaurus initialization script, docusaurus-init
, produces a runnable, example website to base your site upon.
+
+- In your root, rename
docs-examples-from-docusaurus
to docs
.
+cd website
+- Rename
blog-examples-from-docusaurus
to blog
.
+- Run the local webserver via
yarn start
or npm start
.
+- Load the example site at http://localhost:3000. You should see the example site loaded in your web browser.
+
+