Joget DX 8 Stable Released
The stable release for Joget DX 8 is now available, with a focus on UX and Governance.
...
Code Block | ||
---|---|---|
| ||
echo "== Deploy Joget =="
gcloud compute ssh $INSTANCE_NAME -- "\
echo === Install Java ===;\
sudo apt-get update;\
sudo apt-get install -y openjdk-8-jdk-headless;\
echo === Install MySQL ===;\
sudo debconf-set-selections <<< \"mysql-server-$MYSQL_VERSION mysql-server/root_password password $MYSQL_PASSWORD\";\
sudo debconf-set-selections <<< \"mysql-server-$MYSQL_VERSION mysql-server/root_password_again password $MYSQL_PASSWORD\";\
sudo apt-get -y install mysql-server-$MYSQL_VERSION;\
sudo -E apt-get -q -y install mysql-server;\
echo === Download Joget $JOGET_VERSION ===;\
cd ~;\
wget https://dev.joget.org/downloads/enterprise/joget-enterprise-linux-$JOGET_VERSION.tar.gz;\
echo === Extract Bundle ===;\
tar xvfz joget-enterprise-linux-$JOGET_VERSION.tar.gz;\
cd joget-enterprise-linux-$JOGET_VERSION;\
echo === Setup Datasource ===;\
apache-ant-1.7.1/bin/ant setup -Dprofile.name=default -Ddb.name=jwdb -Ddb.host=localhost -Ddb.port=3306 -Ddb.user=root -Ddb.password=$MYSQL_PASSWORD;\
echo === Reduce JAVA VM Memory Allocation ===;\
sed -i -e 's/512/256/g' tomcat8.sh;\
echo === Clean Bundle ===;\
cd ..;\
rm -r joget-enterprise-linux-$JOGET_VERSION.tar.gz;\
echo === Start Joget $JOGET_VERSION ===;\
cd joget-enterprise-linux-$JOGET_VERSION;\
./tomcat8.sh start" |
...