bigbluebutton-Github/bigbluebutton-web
Paul Trudel 03a6901e52
fix(bbb-web): Make all document processing timeouts configurable (#21467)
* Add new timeout props  for document conversion

* Add timeout config props to bbb

* Fix typo in pdfPageDownscaleExecTimeout property

* Specifiy time units in property names
2024-10-24 21:16:24 -04:00
..
gradle/wrapper Upgrade Grails to 6.1 2024-01-19 15:39:39 -05:00
grails-app fix(bbb-web): Make all document processing timeouts configurable (#21467) 2024-10-24 21:16:24 -04:00
nginx-confs Fix CORS Headerr for rendered slides (#21361) 2024-10-04 08:38:55 -04:00
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 - upgrade bigbluebutton-web to grails 2.3.6 2014-02-25 15:46:06 +00:00
.gitignore refactor: further cleanup of bbb-demo 2022-07-14 14:55:10 +00:00
bbb-web.nginx 3.0beta1 clusterfixes (#21132) 2024-09-25 13:48:17 -04: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 - upgrade bigbluebutton-web to grails 2.3.6 2014-02-25 15:46:06 +00:00
deploy_to_usr_share.sh fix: Allow for existing dir 'exploded' in bbb-web deploy_to_usr_share.sh 2023-03-09 16:23:21 -05:00
gradle.properties chore(core): upgrade embedded tomcat, grails-plugin-databinding (#21065) 2024-08-30 10:27:43 -04:00
gradlew upgrading bigbluebutton-web 2021-12-17 12:39:03 +00:00
gradlew.bat upgrading bigbluebutton-web 2021-12-17 12:39:03 +00:00
grails-wrapper.jar Update bigbluebutton-web to gradle 5.1 (Work In Progress) 2019-01-09 21:06:09 +01:00
grailsw Update bigbluebutton-web to gradle 5.1 (Work In Progress) 2019-01-09 21:06:09 +01:00
grailsw.bat chore: Fix typo (found by typos) (port) #19834 2024-03-18 09:58:53 -04:00
INSTALL - upgrade bigbluebutton-web to grails 2.3.6 2014-02-25 15:46:06 +00:00
loadbalancer.nginx Update packaging and nginx config for loadbalancer 2021-11-21 21:12:50 +01:00
README.md chore(bbb-web): do away with wrapper script, use default files 2022-10-11 19:45:26 +02:00
run-dev.sh Improve scripts to run/deploy applications 2022-03-31 13:48:57 -03:00
run.sh refactor: swap netstat with ss 2022-03-23 20:50:19 +00:00
settings.gradle Update bigbluebutton-web to gradle 5.1 (Work In Progress) 2019-01-09 21:06:09 +01:00
turn-stun-servers.xml.tmpl - reduce size of the bbb-html5 image 2018-08-24 17:15:47 -03: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. 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.