d3d62a62c3
* Update docusaurus to fix security vuln in dependency Also update docusaurus config to match new version. Fixed some broken links in the documentation, but not sure if they were related to the version change. * Remove bad links * Make broken links a warning instead of error |
||
---|---|---|
.. | ||
docs | ||
src | ||
static | ||
.gitignore | ||
docusaurus.config.js | ||
package.json | ||
README.md | ||
sidebars.js | ||
yarn.lock |
How to build these docs
We use Docusaurus 2 for our docs, a modern static website generator.
Requirements
Assuming you have Node.js installed (which includes npm), you can install Docusaurus with:
You will need to install Yarn before you can build the site.
npm install -g yarn
Installation
Once you have installed yarn, navigate to docs directory & set-up the dependencies.
cd docs
yarn
Local Development
yarn start
This command starts a local development server and opens up a browser window. Most changes are reflected live without having to restart the server.
Build
yarn build
This command generates static content into the build
directory and can be served using any static contents hosting service.
Deployment
GIT_USER=<Your GitHub username> USE_SSH=true yarn deploy
If you are using GitHub pages for hosting, this command is a convenient way to build the website and push to the gh-pages
branch.