bigbluebutton-Github/bigbluebutton-web
2021-02-18 20:33:19 +00:00
..
gradle/wrapper
grails-app Merge branch 'v2.2.x-release' of github.com:bigbluebutton/bigbluebutton into feb18-merge 2021-02-18 20:33:19 +00:00
nginx-confs
pres-checker Updated java projects dependencies versions. 2020-02-28 10:44:28 +01:00
src
test
wrapper
.dockerignore
.gitignore
bbb-web.nginx Improve nginx matching on incoming URLs 2020-04-09 21:40:33 +03:00
build.gradle Fix XML(Formula) Injection 2020-05-19 08:56:00 +12:00
build.sh
COPYING.LESSER
docker-entrypoint.sh remove obsolete attendeesJoinViaHTML5Client moderatorsJoinViaHTML5Client 2020-12-09 19:11:50 +00:00
Dockerfile http => https to prevent 403 access denied during gradle download 2020-01-16 13:45:51 +01:00
gradle.properties
gradlew
gradlew.bat
grails-wrapper.jar
grailsw
grailsw.bat
INSTALL
README.md
run-prod.sh Bind to localhost 2020-04-24 15:05:17 -07:00
run.sh Improvements on bbb-libreoffice 2020-07-24 02:42:51 -03: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.