Joget DX 8 Stable Released
The stable release for Joget DX 8 is now available, with a focus on UX and Governance.
Download the Java Development Kit (JDK) 7 or above from http://www.oracle.com/technetwork/java/javase/downloads/index.html.
Follow the installation instructions at https://docs.oracle.com/javase/8/docs/technotes/guides/install/windows_jdk_install.html
Set JAVA_HOME:
In Windows 7 right click My Computer and select Properties > Advanced.
In the Variable Value field, enter the JDK installation path e.g. C:\Program Files\Java\jdk1.8.0_77
Install Apache Maven 2.2.1 or above. Please make sure "mvn" command is able to execute from command line.
sudo apt-get install maven mvn -version
Install Github Client.
sudo apt-get install git git --version
wget http://dev.joget.org/community/download/attachments/19104566/install-libraries.zip unzip -a install-libraries.zip cd install-libraries ./install_linux.sh cd ~
mkdir joget_src cd joget_src git clone https://github.com/jogetworkflow/jw-community.git --branch 5.0-SNAPSHOT cd ~
Create database.
mysql -uroot create database jwdb; exit mysql -uroot jwdb < joget_src/jw-community/wflow-install/src/main/resources/data/jwdb-empty.sql
Download wflow.zip and extract in your user home.
wget http://dev.joget.org/community/download/attachments/19104566/wflow.zip unzip -a wflow.zip cd wflow nano app_datasource-default.properties
Make sure the configuration in "app_datasource-default.properties" is correct.
workflowDriver=com.mysql.jdbc.Driver workflowUrl=jdbc\:mysql\://localhost\:3306/jwdb?characterEncoding\=UTF-8 workflowUser=root profileName= workflowPassword=
cd ~/joget_src/jw-community/wflow-app/ mvn clean install