This website is built using Docusaurus 2, a modern static website generator.
Follow these steps to run a Docusaurus documentation site that you've cloned from GitHub on your local machine using VSCode.
Before you begin, make sure you have the following installed on your computer:
Clone the Docusaurus documentation repository from GitHub to your local machine.
Open Visual Studio Code (VSCode) and navigate to the cloned repository's root folder. To do this, go to the top menu and select Terminal > New Terminal.
In the terminal, run the following command to install all the required dependencies for the Docusaurus documentation site:
npm install && npm run buildAfter the dependencies are installed, start the local development server using the following command:
npm run serveOnce the server is up and running, open your web browser and visit http://localhost:3000/ to see the locally running Docusaurus documentation site.
Now, you can explore and interact with the documentation website on your local machine. Any changes you make to the Markdown files will automatically trigger a refresh on the site, allowing you to preview your changes in real-time.