bigbluebutton-Github/bigbluebutton-web
Gustavo Trott 40c00f8739 Introduces a config pluginsManifests to bigbluebutton.properties.
e.g pluginsManifests=[{url: "https://plugin_manifest.json"}]
it will be merged with the parameters received through /create?pluginsManifests=
2024-10-14 14:37:32 -03:00
..
gradle/wrapper Upgrade Grails to 6.1 2024-01-19 15:39:39 -05:00
grails-app Introduces a config pluginsManifests to bigbluebutton.properties. 2024-10-14 14:37:32 -03:00
nginx-confs
pres-checker Added try-catch to stream close 2023-05-09 16:18:20 +00:00
src fix(core): 3.0 cluster setup (#20439) 2024-06-17 14:26:13 -04:00
test Remove endpoint /enter of bbb-web 2024-07-11 11:14:46 -03:00
wrapper
.gitignore
bbb-web.nginx nginx/html5: Introduce endpoint /bigbluebutton/ping for RTT calc (#20605) 2024-06-28 16:51:06 -03:00
build.gradle chore(core): upgrade embedded tomcat, grails-plugin-databinding (#21065) 2024-08-30 10:27:43 -04:00
build.sh Remove endpoint /enter of bbb-web 2024-07-11 11:14:46 -03:00
COPYING.LESSER
deploy_to_usr_share.sh
gradle.properties chore(core): upgrade embedded tomcat, grails-plugin-databinding (#21065) 2024-08-30 10:27:43 -04:00
gradlew
gradlew.bat
grails-wrapper.jar
grailsw
grailsw.bat chore: Fix typo (found by typos) (port) #19834 2024-03-18 09:58:53 -04:00
INSTALL
loadbalancer.nginx
README.md
run-dev.sh
run.sh
settings.gradle
turn-stun-servers.xml.tmpl

BigBlueButton Web Grails 3 Deployment Procedure

Upgrade Gradle and Grails

# Install SDKMan if you don't have it yet.

curl -s "https://get.sdkman.io" | bash

# Install Gradle
sdk install gradle 5.1.1

# Install Grails
sdk install grails 3.3.9

Development

Build bbb-common-message

cd /bigbluebutton/bbb-common-message

./deploy.sh

Build bbb-common-web

cd bigbluebutton/bbb-common-web

./deploy.sh

Build and run bbb-web

cd bigbluebutton/bigbluebutton-web

# Make sure you don't have old libs lying around. Might cause issues.
# You need to to this only once to cleanup lib dir.

rm lib/*

./build.sh

# This will listen on port 8989 so you need to adjust your nginx config.
# If you've setup your nginx config to bbb-web dev, you don't need to do anything.

./run.sh

To run unit tests: grails test-app --stacktrace

Production

To package the application for production:

  1. Compile the application and package it use grails assemble
  2. You now have the file build/libs/bigbluebutton-0.10.0.war
  3. Create a new directory mkdir exploded
  4. Navigate to that directory cd exploded
  5. Extract the war content jar -xvf ../build/libs/bigbluebutton-0.10.0.war
  6. Package the content of the new directory in a debian package then add service configuration. Install into /usr/share/bbb-web.
  7. Use the systemd service file provided in build/package-template/bbb-web. App will be listening on port 8080
  8. To do custom config, edit /usr/share/bbb-web/WEB-INF/classes/bigbluebutton.properties Don't forget to use full directories path and replace the dot before the org with the full path to the exploded war.