From 58243eb531223c9cf077b4f21b243cec94bd878c Mon Sep 17 00:00:00 2001 From: Website Deployment Script Date: Thu, 24 May 2018 04:06:40 +0000 Subject: [PATCH] Deploy website Deploy website version based on 1bb933dd9b2551b63abc0dbfb99c03e4e9761940 --- docs/en/next/installation.html | 8 +++++--- docs/en/next/site-preparation.html | 28 +++++++++++++++------------- 2 files changed, 20 insertions(+), 16 deletions(-) diff --git a/docs/en/next/installation.html b/docs/en/next/installation.html index 889815f1c0..81f47f2204 100644 --- a/docs/en/next/installation.html +++ b/docs/en/next/installation.html @@ -27,7 +27,7 @@

After Docusaurus is installed, moving forward, you can check your current version of Docusaurus by going into the website directory and typing yarn outdated docusaurus or npm outdated docusaurus. You can update to the latest version of Docusaurus by typing yarn upgrade docusaurus --latest or npm update docusaurus.

Verifying Installation

Along with previously existing files and directories, your root directory will now contain a structure similar to:

-
root-of-repo
+
root-directory
 ├── docs-examples-from-docusaurus
 │   ├── doc1.md
 │   ├── doc2.md
@@ -37,10 +37,12 @@
 └── website
     ├── blog-examples-from-docusaurus
     │   ├── 2016-03-11-blog-post.md
-    │   └── 2017-04-10-blog-post-two.md
+    │   ├── 2017-04-10-blog-post-two.md
+    │   ├── 2017-09-25-testing-rss.md
+    │   ├── 2017-09-26-adding-rss.md
+    │   └── 2017-10-24-new-version-1.0.0.md
     ├── core
     │   └── Footer.js
-    ├── node_modules
     ├── package.json
     ├── pages
     ├── sidebars.json
diff --git a/docs/en/next/site-preparation.html b/docs/en/next/site-preparation.html
index c7e872cf84..47d28ce358 100644
--- a/docs/en/next/site-preparation.html
+++ b/docs/en/next/site-preparation.html
@@ -15,25 +15,27 @@
         
Edit

Site Preparation

After installing Docusaurus, you now have a skeleton to work from for your specific website. The following discusses the rest of the Docusaurus structure in order for you to prepare your site.

Directory Structure

As shown after you installed Docusaurus, the initialization script created a directory structure similar to:

-
root-of-repo
+
root-directory
 ├── docs-examples-from-docusaurus
 │   ├── doc1.md
 │   ├── doc2.md
 │   ├── doc3.md
 │   ├── exampledoc4.md
 │   └── exampledoc5.md
-├── website
-│   ├── blog-examples-from-docusaurus
-│   │   ├── 2016-03-11-blog-post.md
-│   │   └── 2017-04-10-blog-post-two.md
-│   ├── core
-│   │   └── Footer.js
-│   ├── node_modules
-│   ├── package.json
-│   ├── pages
-│   ├── sidebars.json
-│   ├── siteConfig.js
-│   └── static
+└── website
+    ├── blog-examples-from-docusaurus
+    │   ├── 2016-03-11-blog-post.md
+    │   ├── 2017-04-10-blog-post-two.md
+    │   ├── 2017-09-25-testing-rss.md
+    │   ├── 2017-09-26-adding-rss.md
+    │   └── 2017-10-24-new-version-1.0.0.md
+    ├── core
+    │   └── Footer.js
+    ├── package.json
+    ├── pages
+    ├── sidebars.json
+    ├── siteConfig.js
+    └── static
 

You may have already renamed the example blog (website/blog-examples-from-docusaurus) and document (docs-examples-from-docusaurus) directories when you verified the installation.