2020-04-20 12:17:38 +02:00
|
|
|
How to build these docs
|
|
|
|
=======================
|
|
|
|
|
2020-06-29 08:45:24 +02:00
|
|
|
We use [Docusaurus 2](https://v2.docusaurus.io/) for our docs, a modern static website generator.
|
|
|
|
|
|
|
|
### Requirements
|
|
|
|
Assuming you have [Node.js](https://nodejs.org/en/download/) installed (which includes npm), you can install Docusaurus with:
|
2020-04-20 12:17:38 +02:00
|
|
|
|
|
|
|
You will need to install [Yarn](https://yarnpkg.com/getting-started/install) before you can build the site.
|
|
|
|
```sh
|
|
|
|
npm install -g yarn
|
|
|
|
```
|
|
|
|
|
2020-06-29 08:45:24 +02:00
|
|
|
### Installation
|
|
|
|
|
2020-04-20 12:17:38 +02:00
|
|
|
Once you have installed yarn, navigate to docs directory & set-up the dependencies.
|
|
|
|
|
|
|
|
```sh
|
|
|
|
cd docs
|
|
|
|
yarn
|
|
|
|
```
|
|
|
|
|
2020-06-29 08:45:24 +02:00
|
|
|
### Local Development
|
|
|
|
|
|
|
|
```sh
|
|
|
|
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
|
2020-04-20 12:17:38 +02:00
|
|
|
|
|
|
|
```sh
|
|
|
|
yarn build
|
|
|
|
```
|
|
|
|
|
2020-06-29 08:45:24 +02:00
|
|
|
This command generates static content into the `build` directory and can be served using any static contents hosting service.
|
|
|
|
|
|
|
|
### Deployment
|
|
|
|
|
2020-04-20 12:17:38 +02:00
|
|
|
```sh
|
2020-06-29 08:45:24 +02:00
|
|
|
GIT_USER=<Your GitHub username> USE_SSH=true yarn deploy
|
2020-04-20 12:17:38 +02:00
|
|
|
```
|
|
|
|
|
2020-06-29 08:45:24 +02:00
|
|
|
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.
|