bigbluebutton-Github/bigbluebutton-web
2023-01-09 10:58:25 -03:00
..
gradle/wrapper
grails-app Merge remote-tracking branch 'upstream/v2.6.x-release' into disabled-transcriptions 2023-01-09 10:58:25 -03:00
nginx-confs Removes all references to swf files (used by old flash client) 2022-11-17 10:55:19 -03:00
pres-checker chore: Upgrade commons-compress to 1.21 2022-12-21 05:47:12 -05:00
src Make API participantCount show online users 2022-11-11 14:14:55 -03:00
test remove SetPollsXML 2022-09-30 14:24:09 +00:00
wrapper
.gitignore refactor: further cleanup of bbb-demo 2022-07-14 14:55:10 +00:00
bbb-web.nginx
build.gradle Merge branch 'v2.5.x-release' of github.com:bigbluebutton/bigbluebutton into merge-jan-5 2023-01-05 20:26:36 +00:00
build.sh
COPYING.LESSER
deploy_to_usr_share.sh Avoid to override the first backup 2022-03-31 14:53:25 -03:00
gradle.properties upgrade grails to 5.2.4 2023-01-04 20:56:05 +00:00
gradlew
gradlew.bat
grails-wrapper.jar
grailsw
grailsw.bat
INSTALL
loadbalancer.nginx
README.md
run-dev.sh Improve scripts to run/deploy applications 2022-03-31 13:48:57 -03:00
run-prod.sh spring to 2.7.x 2023-01-04 20:33:06 +00:00
run.sh refactor: swap netstat with ss 2022-03-23 20:50:19 +00:00
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. 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.