Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

File / Directory Name

Chinese

文件/目录名称


Description

Chinese

描述


app_src

Directory under wflow containing all the Git projects

Chinese

wflow下的目录,其中包含所有Git项目

appId

Each app has a directory with the app ID as its name e.g. “crm"

Chinese

每个应用都有一个以应用ID为名称的目录,例如“ crm”

app.properties

Configuration file containing the settings as saved in the app Git Configuration UI.

This file applies for all app versions.

Chinese

包含保存在应用程序Git配置UI中的设置的配置文件。

此文件适用于所有应用版本。

appId_version

Under the app directory, each app version has its own directory e.g. version 3 of app ID “crm” would be “crm_3”. 

This is the directory that contains an entire app version including its dependencies e.g. plugins.

Chinese

在应用目录下,每个应用版本都有自己的目录,例如应用ID“ crm”的版本3为“ crm_3”。

该目录包含完整的应用程序版本,包括其依赖项,例如插件。

Info
titleNote

Within this directory, each app version is a separate Git branch.

It might seem then it is being duplicated for each version, but this is required to cater to the possibility of different app versions being worked on concurrently.

Chinese

在此目录中,每个应用程序版本都是一个单独的Git分支。

似乎每个版本都在复制它,但这是必须的,以适应同时处理不同应用程序版本的可能性。


appDefinition.xml

XML containing the main app definition, including the process mappings, message and resource records.

Chinese

包含主要应用程序定义的XML,包括流程映射,消息和资源记录。

appConfig.xml

XML containing environment variables and plugin default properties.

This file is meant to keep configuration values (e.g. settings that might differ in development vs testing vs production), that can be omitted from Git commits if required.

Chinese

包含环境变量和插件默认属性的XML。

该文件用于保留配置值(例如,开发,测试和生产中可能会有所不同的设置),如果需要,可以从Git提交这些配置值。

package.xpdl

XPDL definition for the app processes.

Chinese

应用程序流程的XPDL定义。

forms

Chinese

表单

Directory containing form JSON definitions. Each form is saved as 1 JSON file.

Chinese

包含表单JSON定义的目录。每个表单都保存为1个JSON文件。

lists

Chinese

数据列表

Directory containing datalist JSON definitions. Each datalist is saved as 1 JSON file.

Chinese

包含数据列表JSON定义的目录。每个数据列表均保存为1个JSON文件。

userviews

Chinese

用户视图

Directory containing form JSON definitions. Each userview is saved as 1 JSON file.

Chinese

包含表单JSON定义的目录。每个用户视图均保存为1个JSON文件。

resources

Chinese

资源

Directory containing uploaded resource files.

Chinese

包含上载资源文件的目录。

plugins

Chinese

插件

Directory containing custom plugins used.

Chinese

包含使用的自定义插件的目录。


Disabling Git In Joget DX

Beginning from v7.0.6 release, we added a new JAVA_OPT parameter to disable or turn off the Git. This is done by adding-Dgit.disabled=trueto your Joget startup script, for example:

Code Block
set JAVA_OPTS=-Xmx2048M -Dwflow.home=./wflow/ -javaagent:./wflow/aspectjweaver-1.8.5.jar -javaagent:./wflow/glowroot/glowroot.jar -Dgit.disabled=true

If you opt to disable the Git in Joget DX, you can delete the ".\wflow\app_src" folder content to save some hard disk space in your development servers.