The KIE Community is a home for leading Open Source projects that play a role in delivering solutions around Business Automation and Artificial Intelligence in the Cloud.
This repository contains tooling applications and libraries for KIE projects.
- Work in progress 🔨
To start building the Apache KIE Tools project, you're going to need:
- Node
18
(To install, follow these instructions: https://nodejs.org/en/download/package-manager/) - pnpm
8.7.0
(To install, follow these instructions: https://pnpm.io/installation) - Maven
3.9.6
- Java
17
- Go
1.21.5
(To install, follow these instructions: https://go.dev/doc/install) - Helm
3.13.3
(To install, follow these instructions: https://helm.sh/docs/intro/install/)
ℹ️ NOTE: Some packages will require that
make
is available as well.
ℹ️ NOTE: *nix users will also need:
lib-gtk-3-dev
appindicator3-0.1
(libayatana-appindicator3-dev
orlibappindicator-gtk3-devel
andgir1.2-appindicator3-0.1
)
ℹ️ NOTE: Users of Fedora or RHEL will need to add a repository:
sudo yum install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm
After installing the tools above, you'll need to download the dependencies and link the packages locally. Simply run:
pnpm bootstrap
To install only the dependencies that are relevant to the package called [pkg-name]
.
-
pnpm bootstrap -F [pkg-name]...
⚠️ NOTE: Here,...
is actually necessary! They're part of apnpm
filter.
After dependencies are installed, you'll be able to build. To do so, you'll have two choices - dev
, or prod
.
Note that it is recommended that you specify which package you want to build, so replace [pkg-name]
with the name of the desired package on one of the commands below:
pnpm -F [pkg-name]... build:dev
- This is fast, but not as strict. It skips tests, linters, and some type checks. Be prepared for the CI to fail on your PRs.pnpm -F [pkg-name]... build:prod
- The default command to build production-ready packages. Use that to make sure your changes are correct.
⚠️ NOTE: Here,...
is actually necessary! They're part of apnpm
filter.
ℹ️ NOTE: If you want to build everything, run
pnpm -r build:dev
orpnpm -r build:prod
. It's going to take a while, though :)
ℹ️ NOTE: The Apache KIE Tools build is parameterized by several Environment Variables. For an extensive list of these variables, please see the list printed by the
bootstrap
script.
ℹ️ NOTE: Final artifacts will be on
{packages,examples}/*/dist
directories.
The Apache KIE Tools project contains several applications. To develop each one of them individually, refer to the instructions below.
- After you've successfully built the project following the instructions above, open the
packages/kie-editors-dev-vscode-extension
folder on VS Code. Use a new VS Code window so that thepackages/kie-editors-dev-vscode-extension
folder shows up as root in the VS Code explorer. - From there, you can Run the extension or the end-to-end tests by using the
Debug
menu/section. You can also use the respective shortcuts (F5 to start debugging, for instance). - NOTE: To run the VS Code extension in development mode, you need
webpack
andwebpack-cli
to be globally installed on NPM. Normally you can do that withnpm install -g webpack@^5.88.2 webpack-cli@^4.10.0
, butsudo
may be required depending on your installation. - Remember! If you make changes to any package other than
packages/kie-editors-dev-vscode-extension
, you have to manually rebuild them before relaunching the extension on VS Code.
- After you've successfully built the project following the instructions above, open the
packages/serverless-workflow-vscode-extension
folder on VS Code. Use a new VS Code window so that thepackages/serverless-workflow-vscode-extension
folder shows up as root in the VS Code explorer. - From there, you can Run the extension or the end-to-end tests by using the
Debug
menu/section. You can also use the respective shortcuts (F5 to start debugging, for instance). - Remember! If you make changes to any package other than
packages/serverless-workflow-vscode-extension
, you have to manually rebuild them before relaunching the extension on VS Code.
- After you've successfully built the project following the instructions above, open the
packages/chrome-extension-pack-kogito-kie-editors
folder on your favourite IDE. You can import the entire repo as well if you want to make changes to other packages. - Run
pnpm build:dev
onpackages/chrome-extension-pack-kogito-kie-editors
. This will create a version of the Chrome Extension that fetches the envelope locally. - Open a terminal and run
pnpm start
onpackages/chrome-extension-pack-kogito-kie-editors
. This will start awebpack serve
instance with the editors and their envelope. We use that because we don't pack the Chrome Extension bundle with the editors inside. Instead, we fetch them from GitHub pages. - You also have to enable invalid certificates for resources loaded from localhost in your browser. To do that, go to
chrome://flags/#temporary-unexpire-flags-m118
in your Chrome browser, enable this flag and restart browser. Then go tochrome://flags/#allow-insecure-localhost
in your Chrome browser and enable also this flag. Alternativelly, you can go tohttps://localhost:9001
and add an exception. - Open Chrome and go to
chrome://extensions
. Enable "Developer mode" in the top-right corner and click on "Load unpacked". Choose thepackages/chrome-extension-pack-kogito-kie-editors/dist
folder. - From now on you can use the development version of the extension. Remember! After each change, you have to rebuild the changed modules and hit the "Refresh" button of the extension card.
- After you've successfully built the project following the instructions above, open the
packages/chrome-extension-serverless-workflow-editor
folder on your favourite IDE. You can import the entire repo as well if you want to make changes to other packages. - Run
pnpm build:dev
onpackages/chrome-extension-serverless-workflow-editor
. This will create a version of the Chrome Extension that fetches the envelope locally. - Open a terminal and run
pnpm start
onpackages/chrome-extension-serverless-workflow-editor
. This will start awebpack serve
instance with the editors and their envelope. We use that because we don't pack the Chrome Extension bundle with the editors inside. Instead, we fetch them from GitHub pages. - You also have to enable invalid certificates for resources loaded from localhost in your browser. To do that, go to
chrome://flags/#temporary-unexpire-flags-m118
in your Chrome browser, enable this flag and restart browser. Then go tochrome://flags/#allow-insecure-localhost
in your Chrome browser and enable also this flag. Alternativelly, you can go tohttps://localhost:9000
and add an exception. - Open Chrome and go to
chrome://extensions
. Enable "Developer mode" in the top-right corner and click on "Load unpacked". Choose thepackages/chrome-extension-serverless-workflow-editor/dist
folder. - From now on you can use the development version of the extension. Remember! After each change, you have to rebuild the changed modules and hit the "Refresh" button of the extension card.
- After you've successfully built the project following the instructions above, go to
packages/online-editor
. - Open a terminal and run
pnpm start
. This will start awebpack serve
instance with the Online Editor resources. - From now on you can use the development version of the Online Editor by accessing
https://localhost:9001
. - Run the CORS Proxy by running
pnpm start
atpackages/cors-proxy
.
- After you've successfully built the project following the instructions above, go to
packages/serverless-logic-web-tools
. - Open a terminal and run
pnpm start
. This will start awebpack serve
instance with the Serverless Logic Web Tools resources. - From now on you can use the development version of the Serverless Logic Web Tools by accessing
https://localhost:9020
. - Run the CORS Proxy by running
pnpm start
atpackages/cors-proxy
.
- After you've successfully built the project following the instructions above, go to
packages/kie-editors-standalone
. - Open a terminal and run
pnpm start
. This will start awebpack serve
instance with the Standalone Editors test page. - From now on you can use the development version of the Standalone DMN Editor by accessing
https://localhost:9001/resources/dmn
and the Standalone BPMN Editor by accessinghttps://localhost:9001/resources/bpmn
.
The stunner-editors
package contains the BPMN, DMN, and SceSim Editors that are used in many applications of Apache KIE Tools.
After cloning the repo, start with a fresh build.
-
pnpm bootstrap -F @kie-tools/stunner-editors...
-
pnpm -F @kie-tools/stunner-editors... build:dev
After that, you're ready to start developing the Editors individually.
-
BPMN
- Located at
packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-kogito-runtime
. - Run
mvn clean gwt:run
to start. To enable live-reloading capability, runmvn clean gwt:run -Phot-reload
- Located at
-
DMN
- Located at
packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime
. - Run
mvn clean gwt:run
to start. To enable live-reloading capability, runmvn clean gwt:run -Phot-reload
- If you want to enable live-reloading capabilities of the React components that are part of the DMN Editor, follow these steps.
- Located at
-
Test Scenario (SceSim)
- Located at
packages/stunner-editors/drools-wb-screens/drools-wb-scenario-simulation-editor/drools-wb-scenario-simulation-editor-kogito-testing
. - Run
mvn clean gwt:run
to start.
- Located at