diff --git a/docs/en/next/tutorial-create-new-site.html b/docs/en/next/tutorial-create-new-site.html index 68013ed53e..adbc649781 100644 --- a/docs/en/next/tutorial-create-new-site.html +++ b/docs/en/next/tutorial-create-new-site.html @@ -84,6 +84,11 @@

Docusaurus browser

Scaffold the Site

    +
  1. cd to the directory of your local repository.
  2. +
+
cd docusaurus-tutorial
+
+
  1. Execute the docusaurus-init command in your terminal.
docusaurus-init
@@ -135,7 +140,7 @@
 
 

A browser window will open up at http://localhost:3000.

Congratulations, you have just made your first Docusaurus site! Click around the pages to get a feel for it.

-
Last updated on 2019-5-31 by orangehat

Install the Docusaurus init command

Docusaurus comes with a command line tool to help you scaffold a Docusaurus site with some example templates. Let's install the installer!

-
    -
  1. cd to the directory of your local repository.
  2. -
-
cd docusaurus-tutorial
-
-
    -
  1. Run the following command:
  2. -
+

Run the following command:

npm install --global docusaurus-init
 

or if you have Yarn:

yarn global add docusaurus-init
 
-
Last updated on 2019-7-26 by Jay Martin
Create a New Site