bigbluebutton-v2.5.11/bigbluebutton-web
2023-01-16 14:25:39 +08:00
..
gradle/wrapper first commit 2023-01-16 14:25:39 +08:00
grails-app first commit 2023-01-16 14:25:39 +08:00
nginx-confs first commit 2023-01-16 14:25:39 +08:00
pres-checker first commit 2023-01-16 14:25:39 +08:00
src first commit 2023-01-16 14:25:39 +08:00
test first commit 2023-01-16 14:25:39 +08:00
wrapper first commit 2023-01-16 14:25:39 +08:00
.gitignore first commit 2023-01-16 14:25:39 +08:00
bbb-web.nginx first commit 2023-01-16 14:25:39 +08:00
build.gradle first commit 2023-01-16 14:25:39 +08:00
build.sh first commit 2023-01-16 14:25:39 +08:00
COPYING.LESSER first commit 2023-01-16 14:25:39 +08:00
deploy_to_usr_share.sh first commit 2023-01-16 14:25:39 +08:00
gradle.properties first commit 2023-01-16 14:25:39 +08:00
gradlew first commit 2023-01-16 14:25:39 +08:00
gradlew.bat first commit 2023-01-16 14:25:39 +08:00
grails-wrapper.jar first commit 2023-01-16 14:25:39 +08:00
grailsw first commit 2023-01-16 14:25:39 +08:00
grailsw.bat first commit 2023-01-16 14:25:39 +08:00
INSTALL first commit 2023-01-16 14:25:39 +08:00
loadbalancer.nginx first commit 2023-01-16 14:25:39 +08:00
README.md first commit 2023-01-16 14:25:39 +08:00
run-dev.sh first commit 2023-01-16 14:25:39 +08:00
run-prod.sh first commit 2023-01-16 14:25:39 +08:00
run.sh first commit 2023-01-16 14:25:39 +08:00
settings.gradle first commit 2023-01-16 14:25:39 +08:00
turn-stun-servers.xml.tmpl first commit 2023-01-16 14:25:39 +08:00

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. Copy run script into exploded dir cp ../run-prod.sh .
  7. Package the content of the new directory in a debian package then add service configuration. Install into /usr/share/bbb-web.
  8. Create a systemd service file that runs run-prod.sh. App will be listening on port 8080
  9. 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.