.. | ||
gradle/wrapper | ||
grails-app | ||
nginx-confs | ||
pres-checker | ||
src | ||
test | ||
wrapper | ||
.dockerignore | ||
.gitignore | ||
bbb-web.nginx | ||
build.gradle | ||
build.sh | ||
COPYING.LESSER | ||
docker-entrypoint.sh | ||
Dockerfile | ||
gradle.properties | ||
gradlew | ||
gradlew.bat | ||
grails-wrapper.jar | ||
grailsw | ||
grailsw.bat | ||
INSTALL | ||
README.md | ||
run-prod.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
To run the application from its source code : grails prod run-app
To run the application on a different port use : grails -port=8989 prod run-app
To run unit tests: grails test-app --stacktrace
To package the application for production:
- Compile the application and package it use
grails assemble
- You now have the file
build/libs/bigbluebutton-0.10.0.war
- Create a new directory
mkdir exploded
- Navigate to that directory
cd exploded
- Extract the war content
jar -xvf ../build/libs/bigbluebutton-0.10.0.war
- Copy run script into exploded dir
cp ../run-prod.sh .
- Package the content of the new directory in a debian package then add service configuration. Install into
/usr/share/bbb-web
. - Create a systemd service file that runs
run-prod.sh
. App will be listening on port 8080 - 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.