Joget DX 8 Stable Released
The stable release for Joget DX 8 is now available, with a focus on UX and Governance.
ดาวน์โหลดชุดพัฒนา Java Development Kit (JDK) 8 จาก http://www.oracle.com/technetwork/java/javase/downloads/index.html.
ทำตามคำแนะนำติดตั้งที่ https://docs.oracle.com/javase/8/docs/technotes/guides/install/windows_jdk_install.html
ตั้ง JAVA_HOME:
ใน Windows 7 คลิกขวา My Computer และเลือก Properties > Advanced.
ในฟิลด์ Variable Value , ป้อนเส้นทางที่ติดตั้ง JDK เช่น C:\Program Files\Java\jdk1.8.0_77
ดาวน์โหลด MySQL Server 5.5 หรือสูงกว่าจาก http://dev.mysql.com/downloads/mysql/
ทำตามคำแนะนำติดตั้งที่ http://dev.mysql.com/doc/en/windows-installation.html
ดาวน์โหลด Apache Maven 2.2.1 หรือสูงกว่าจาก https://maven.apache.org/download.cgi
ทำตามคำแนะนำติดตั้งที่ https://maven.apache.org/install.html
Please ensure that the "mvn" command can be executed from the command line by adding it to the PATH:
ใน Windows 7 คลิกขวา My Computer และเลือก Properties > Advanced.
ในฟิลด์ Variable Value , append the Maven path (เช่น C:\Program Files\apache-maven-3.3.9\bin) to the current path
ดาวน์โหลดและติดตั้ง Git client จาก https://git-scm.com/download/win
ดาวน์โหลดไฟล์ 3rd party libraries จาก http://dev.joget.org/community/download/attachments/19104566/install-libraries.zip
แตกไฟล์
cd install-libraries install_win.bat
Depending on your version of Apache Maven, you might get an error "BUILD FAILED" containing the message: Cannot run program "mvn.cmd"
In this case, edit the file install-libraries\lib\setup-maven_win.xml and replace all occurrences of "mvn.cmd" with "mvn.bat"
mkdir joget_src cd joget_src git clone https://github.com/jogetworkflow/jw-community.git --branch 6.0-SNAPSHOT
mysql -uroot -p create database jwdb; exit mysql -uroot -p jwdb < joget_src/jw-community/wflow-install/src/main/resources/data/jwdb-empty.sql
workflowDriver=com.mysql.jdbc.Driver workflowUrl=jdbc\:mysql\://localhost\:3306/jwdb?characterEncoding\=UTF-8 workflowUser=root profileName= workflowPassword=root
To pass unit tests which require a valid datasource, it is important to ensure that:
cd joget_src\jw-community\wflow-app\ mvn clean install