Skip to content

Latest commit

 

History

History
30 lines (19 loc) · 1.32 KB

README.md

File metadata and controls

30 lines (19 loc) · 1.32 KB

livekit-tutorials-docs

Visit at https://livekit-tutorials.openvidu.io/.

Create custom Docker image with necessary extra plugings:

docker build --pull --no-cache --rm=true -t squidfunk/mkdocs-material .

Serve:

docker run --name=mkdocs --rm -it -p 8000:8000 -v ${PWD}:/docs squidfunk/mkdocs-material

Build:

docker run --rm -it -v ${PWD}:/docs squidfunk/mkdocs-material build

Sync changes between openvidu.io and livekit-tutorials.openvidu.io

Whenever any changes are made to the tutorials documentation, theses changes must be also reflected in repository openvidu.io so they end up available in openvidu.io/latest/docs/getting-started.

To apply changes in the web openvidu.io:

  • In this repository, push the changes to tutorials documentation to the main branch and run GitHub Action Publish Web selecting the main branch.
  • In repository openvidu.io, push the changes to the main branch and run GitHub Action to overwrite the latest version.