From 7291a35fb7c5cb4476683c12110edd2be2692f4e Mon Sep 17 00:00:00 2001
From: Website Deployment Script Along with previously existing files and directories, your root directory will now contain a structure similar to:docs-examples-from-docusaurus and website
Verifying Installation
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.
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.

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.