แหล่งเก็บ Source Code
...
.
The source code for สำหรับ Joget Workflow is available at อยู่ที่ https://github.com/jogetworkflow/jw-community.
You can view the คุณสามารถดู source code for other versions by using the branch switcher in เวอร์ชั่นอื่นๆได้ที่ GitHub.
...
สร้าง Source Code
1.
...
ข้อกำหนดเบื้องต้นในการติดตั้ง
- Install ติดตั้ง JDK 7 or above. Please make sure 8. โปรดตรวจสอบให้แน่ใจว่ามีการตั้งค่า "JAVA_HOME" is set.
- Install ติดตั้ง MySQL 5 or aboveหรืรอสูงกว่า.
- Install ติดตั้ง Apache Maven 2.2.1 or above. Please make sure หรือสูงกว่า โปรดตรวจสอบให้แน่ใจว่าคำสั่ง "mvn" command is able to be executed from the command line.สามารถเรียกใช้งานได้จากบรรทัดคำสั่ง
- ติดตั้ง Install Subversion Client or หรือ Github Client.
2.
...
ติดตั้ง 3rd Party Libraries
- Download and unzip the file ดาวน์โหลดและแตกไฟล์ install-libraries.zip.
- In the extracted folderในโฟลเดอร์ให้, run "install_linux.sh" for สำหรับ Linux and และ Mac or หรือ run "install_win.bat" for สำหรับ Window.
3.
...
แหล่งที่มา
ในขณะที่เขียนคู่มือนี้คือเวอร์ชั่น At the time of writing this guide, the latest 5.0 version is 5.0-SNAPSHOT. You can obtain the คุณสามารถรับ source code by following methodsได้โดยทำตามนี้:
Direct Download
ดาวน์โหลดโดยตรง
คุณจะพบปุ่มดาวน์โหลดที่แถบข้างขวาYou will find a download button on the right sidebar.
Checkout using Subversion Client
...
Code Block |
---|
|
git clone https://github.com/jogetworkflow/jw-community.git --branch 5.0-SNAPSHOT |
4.
...
กำหนดค่าแหล่งข้อมูลาำหรับกรณีทดสอบ
- Joget Workflow contains unit test cases that requires access to a running MySQL database.มีกรณีทดสอบที่ต้องการเข้าถึงฐานข้อมูล MySQL ที่รันอยู่
- ในการกำหนดค่า datasource ให้นำทางไปยัง To configure a datasource, navigate to your user home:
- e.g. In เช่น ใน Windows: cd C:\Users\myuser\
- e.g. In เช่น ใน Ubuntu: cd /home/myuser/e
- .g. In เช่น ใน Mac: cd /Users/myuser/
- Download ดาวน์โหลด wflow.zip and extract the file in และแตกไฟล์ใน your user home.
- You will find the files คุณจะพบไฟล์ "app_datasource.properties" and และ "app_datasource-default.properties" in the ในโฟลเดอร์ "wflow" folder.
Configure กำหนดค่า "app_datasource-default.properties" with your MySQL server username and password. ด้วยชื่อผู้ใช้และรหัสผ่านเซิร์ฟเวอร์ MySQL ของคุณ
Code Block |
---|
workflowDriver=com.mysql.jdbc.Driver
workflowUrl=jdbc\:mysql\://localhost\:3306/jwdb?characterEncoding\=UTF-8
workflowUser=root
profileName=
workflowPassword=root |
- Create a สร้างฐานข้อมูล "jwdb" database in your ใน MySQL Server with the ของคุณด้วยไฟล์ "jwdb-empty.sql" file located in the ใน source code directory "wflow-install/src/main/resources/data/".
5.
...
สร้าง Project
- Navigate into the ไปยัง wflow-app directory.
Build the สร้าง wflow-app directory using โดยใช้คำสั่ง Apache Maven commands.
Code Block |
---|
|
cd wflow-app
mvn clean install |
...