bigbluebutton-Github/docs
2023-10-18 17:14:26 +05:00
..
docs 📝 Update typo in install.md 2023-10-18 17:14:26 +05:00
src Resolve conflicts 2023-09-11 11:25:56 -03:00
static docs: better quality header 2023-09-07 11:03:27 -04:00
.gitignore Versioning configuration and improvents in the build script 2023-02-09 10:53:47 +01:00
babel.config.js Move bigbluebutton-docs to the main repository. 2022-12-10 21:21:56 +01:00
build.sh docs: git fetch all tags, some tags were missing after --all 2023-10-03 11:20:29 -04:00
docusaurus.config.js docs: mark 2.5 as legacy to match build.sh 2023-10-03 11:26:06 -04:00
package-lock.json added lock for @docusaurus/plugin-client-redirects 2023-07-21 15:13:41 -04:00
package.json Redirect from old docs to new 2023-03-24 15:23:52 +01:00
README.md Update readme and build instructions for 2.6 2023-03-17 21:35:40 +01:00
sidebars.js Change Greenlight reference from pointing to v2 to v3 2023-03-31 16:03:00 -04:00
tsconfig.json Move bigbluebutton-docs to the main repository. 2022-12-10 21:21:56 +01:00
yarn.lock Redirect from old docs to new 2023-03-24 15:23:52 +01:00

BigBlueButton Docs

These docs are automatically built using Docusaurus 2 and GitHub Actions (see deploy-docs.yml).

Local Development

To test build the docs locally you can either use yarn or npm.

$ yarn install  # install docusaurus and dependencies
$ yarn start  # start local dev server

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.

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).

Build

If you only want to build the docs you can run:

$ yarn clear # ensure cached content is not interfering with your changes
$ yarn build

This command generates static content into the build directory and can be served using any static contents hosting service.

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