Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -94,15 +94,16 @@ Preferebly, that bundled js file is placed into the Bigbluebutton's assets porti

```bash
mkdir -p /var/www/bigbluebutton-default/assets/plugins/plugin-h5p/
cp H5pPlugin.js /var/www/bigbluebutton-default/assets/plugins/plugin-h5p/
cp dist/H5pPlugin.js /var/www/bigbluebutton-default/assets/plugins/plugin-h5p/
cp dist/manifest.json /var/www/bigbluebutton-default/assets/plugins/plugin-h5p/
```

This will make this plugin available on `https://<your-host>/plugins/plugin-h5p/H5pPlugin.js`

To use the plugin with BigBlueButton, add the plugin's manifest URL to the parameter as shown below:

```
pluginManifests=[{"url":"http://<yourdomain>/path/to/manifest.json"}]
pluginManifests=[{"url":"https://<yourdomain>/plugins/plugin-h5p/manifest.json"}]
```

## How to use it?
Expand Down