bigbluebutton-Github/bigbluebutton-web
2019-01-25 12:25:16 -08:00
..
gradle/wrapper Implemented unit tests for create API. 2019-01-21 21:58:16 +01:00
grails-app - add max file upload limit 2019-01-25 12:11:18 -08:00
nginx-confs - changing aliases to use meeting_id_2 instead of meeting_id_1 just in case we need to make the URL params different 2018-10-09 09:15:22 -07:00
pres-checker Improve build shell scripts. 2018-11-22 12:53:42 -02:00
src Added unit test for join API. 2019-01-24 08:42:14 +01:00
test Update bigbluebutton-web to gradle 5.1 (Work In Progress) 2019-01-09 21:06:09 +01:00
wrapper - upgrade bigbluebutton-web to grails 2.3.6 2014-02-25 15:46:06 +00:00
.dockerignore push unfinished work on docker 2018-08-24 17:15:47 -03:00
.gitignore Merging breakout rooms with the master branch 2016-03-21 17:52:23 +00:00
bbb-web.nginx Split POST upload request into two stages at nginx 2017-09-18 14:25:00 -04:00
build.gradle Implemented unit tests for create API. 2019-01-21 21:58:16 +01:00
build.sh - separate building and running as most of the times, we don't need to re-run bringing in jars and configs. 2019-01-25 12:25:16 -08:00
COPYING.LESSER - upgrade bigbluebutton-web to grails 2.3.6 2014-02-25 15:46:06 +00:00
docker-entrypoint.sh add another property for redis on bbb-web; set freeswitch ip on webrtc-sfu; add volumes to store media files 2018-08-24 17:15:47 -03:00
Dockerfile update instructions and implementation of a working docker-compose (no recordings yet) 2018-08-24 17:15:47 -03:00
gradle.properties Update bigbluebutton-web to gradle 5.1 (Work In Progress) 2019-01-09 21:06:09 +01:00
gradlew Update bigbluebutton-web to gradle 5.1 (Work In Progress) 2019-01-09 21:06:09 +01:00
gradlew.bat Update bigbluebutton-web to gradle 5.1 (Work In Progress) 2019-01-09 21:06:09 +01: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 Update bigbluebutton-web to gradle 5.1 (Work In Progress) 2019-01-09 21:06:09 +01:00
INSTALL - upgrade bigbluebutton-web to grails 2.3.6 2014-02-25 15:46:06 +00:00
README.md Added README.md to bigbluebutton-web. 2019-01-25 17:24:06 +01:00
run.sh - separate building and running as most of the times, we don't need to re-run bringing in jars and configs. 2019-01-25 12:25:16 -08: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

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:

  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.
  7. The application is after that runnable using the following command java -cp WEB-INF/lib/*:/:WEB-INF/classes/:. org.springframe work.boot.loader.WarLauncher Don't forget to use full directories path and replace the dot before the org with the full path to the exploded war.