Last active
August 29, 2015 14:09
-
-
Save fcecagno/8938b0a045e602c72454 to your computer and use it in GitHub Desktop.
Compile bbb-web
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
set -xe | |
sudo service tomcat7 stop | |
sudo chmod 666 /var/log/bigbluebutton/bbb-web.log | |
cd ~/dev/bigbluebutton/bigbluebutton-web | |
# cp /var/lib/tomcat7/webapps/bigbluebutton/WEB-INF/classes/bigbluebutton.properties grails-app/conf/ | |
sudo rm -rf /var/lib/tomcat7/webapps/bigbluebutton* | |
rm -rf target/ | |
gradle clean resolveDeps | |
grails clean | |
grails war | |
VERSION=0.9.0 | |
#VERSION=0.1 | |
sudo cp target/bigbluebutton-$VERSION.war /var/lib/tomcat7/webapps/bigbluebutton.war | |
sudo service tomcat7 start |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment