2023-02-09 18:41:39 +08:00
|
|
|
# BigBlueButton Docs
|
2022-12-11 04:21:56 +08:00
|
|
|
|
2023-02-09 18:41:39 +08:00
|
|
|
These docs are automatically built using [Docusaurus 2](https://docusaurus.io/)
|
|
|
|
and GitHub Actions (see [deploy-docs.yml](../.github/workflows/deploy-docs.yml)).
|
2022-12-11 04:21:56 +08:00
|
|
|
|
2023-02-09 18:41:39 +08:00
|
|
|
## Local Development
|
2022-12-11 04:21:56 +08:00
|
|
|
|
2023-02-09 18:41:39 +08:00
|
|
|
To test build the docs locally you can either use `yarn` or `npm`.
|
2022-12-11 04:21:56 +08:00
|
|
|
|
|
|
|
```
|
2023-02-09 18:41:39 +08:00
|
|
|
$ yarn install # install docusaurus and dependencies
|
|
|
|
$ yarn start # start local dev server
|
2022-12-11 04:21:56 +08:00
|
|
|
```
|
|
|
|
|
2023-02-09 18:41:39 +08:00
|
|
|
The last command starts a local development server and opens up a browser window.
|
|
|
|
Most changes are reflected live without having to restart the server.
|
2022-12-11 04:21:56 +08:00
|
|
|
|
2023-03-13 18:32:46 +08:00
|
|
|
There is also a script `build.sh` that goes through all branches of the repository
|
|
|
|
and adds all release branches that have a `docusaurus.config.js`-file as versions
|
|
|
|
to the docs.
|
|
|
|
Note that you can not have uncommited local changes before you run `/build.sh`,
|
|
|
|
otherwise git will refuse to change branches.
|
|
|
|
This step is optional and if you don't run it, docusaurus will only build the
|
|
|
|
currently checkout out version which is recommended for local development
|
|
|
|
(building all the versions locally can lead to problems with the live
|
|
|
|
updates when using `yarn start`).
|
2022-12-11 04:21:56 +08:00
|
|
|
|
2023-02-09 18:41:39 +08:00
|
|
|
### Build
|
2022-12-11 04:21:56 +08:00
|
|
|
|
2023-02-09 18:41:39 +08:00
|
|
|
If you only want to build the docs you can run:
|
2022-12-11 04:21:56 +08:00
|
|
|
|
|
|
|
```
|
2023-03-16 21:36:25 +08:00
|
|
|
$ yarn clear # ensure cached content is not interfering with your changes
|
2023-02-09 18:41:39 +08:00
|
|
|
$ yarn build
|
2022-12-11 04:21:56 +08:00
|
|
|
```
|
|
|
|
|
2023-02-09 18:41:39 +08:00
|
|
|
This command generates static content into the `build` directory
|
|
|
|
and can be served using any static contents hosting service.
|
2023-03-18 04:35:40 +08:00
|
|
|
|
|
|
|
### Troubleshooting
|
|
|
|
|
|
|
|
Sometimes cached content can interfere with your changes during live updates
|
|
|
|
in development or when building the docs.
|
|
|
|
To avoid this you can run:
|
|
|
|
|
|
|
|
```
|
|
|
|
$ yarn clear # ensure cached content is not interfering with your changes
|
|
|
|
$ rm -r versioned_docs versioned_sidebars versions.json # if you build multiple versions
|
|
|
|
```
|
|
|
|
|
|
|
|
## Cutting a new release
|
|
|
|
|
|
|
|
The docs for all versions are build and deployed from the `develop`-branch,
|
|
|
|
but the actual documentation per version lives in each version-branch (e.g. `v2.6.x-release`).
|
|
|
|
When cutting a new BigBlueButton release at least these two files need to be adjusted on `develop`:
|
|
|
|
|
|
|
|
- `build.sh`: the variable `BRANCHES` is a list of all branches for which documentation will be included
|
|
|
|
- `docusaurus.config.js`: adjust metadata and versions in `config.presets.docs.versions`
|