Skip to content

Latest commit

 

History

History
63 lines (38 loc) · 1.59 KB

README.md

File metadata and controls

63 lines (38 loc) · 1.59 KB

Elemental docs

This website is built using Docusaurus 2, a modern static website generator.

Installation

yarn install

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 with the following command:

yarn serve

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.

Docs versioning

The versioning is done in two steps:

  1. Delete the entry Stable from the file /versions.json

  2. Copy the content from the Next version into Stable

yarn run docusaurus docs:version Stable

Check the versioning

The versioning command will generate the following content:

  • The entry Stable will be added (again) to the /versions.json file

  • /versioned_docs/version-Stable will be updated with the Next content located in /docs

  • /versioned_sidebars/version-Stable-sidebars.json will be updated with the Next sidebar content located in /sidebar.js

Recommendations before creating a Pull Request

Before creating a Pull Request for adding new docs or creating a new version, it's strongly encouraged to build the docs site as described above