generated from camunda-community-hub/zeebe-worker-java-template
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* new page monitoring * UpLoad Jar from Content page * Move to 8.3 version * Add a banner * Produce the same element-template * OAuth integration * Organize import * Improve interface to show the connection * Remove Ping in the list on demand * Update information any time * Rename application and remove mustache
- Loading branch information
1 parent
10dd61f
commit 463c169
Showing
83 changed files
with
3,654 additions
and
932 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
# Cherry architecture | ||
|
||
## bean zeebeClient | ||
|
||
Some connector needs to access the zeebeClient object. | ||
Using the library io.camunda.spring.spring-boot-starter-camunda onboard a bean zeebeClient. | ||
This client is created directly from the application.yaml | ||
|
||
But in the configuration, there is multiple way to declare the zeebeClient: via a list, or from different other way. | ||
ZeebeContainer know the client client in use, so this class redefine the bean with a @Primary option. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
# todo | ||
|
||
Main new feature are registered via the github issue, but here are additionnal (easy to write) | ||
|
||
# Element Template | ||
|
||
## version | ||
The element template accept a version number | ||
in the element template and in the Cherry | ||
|
||
|
||
## handle message | ||
|
||
The XML must contain this | ||
```` | ||
<bpmn:messageEventDefinition id="MessageEventDefinition_0eo5tes" /> | ||
```` | ||
to let the connector catch the throw event. | ||
How to add it in the element-template? | ||
|
||
This should be the correct information, but does not work | ||
|
||
```` | ||
{ | ||
"type": "Hidden", | ||
"generatedValue": { | ||
"type": "uuid" | ||
}, | ||
"binding": { | ||
"type": "bpmn:Message#property", | ||
"name": "name" | ||
} | ||
} | ||
```` | ||
|
||
# Inbound connector | ||
Cherry handle Inbound connector | ||
|
||
# Upload connector JAR | ||
|
||
## PVC | ||
Documentation: via a PVC, upload the JAR and Cherry load it at the beginning. | ||
|
||
## Manual upload | ||
Create a load from the UI | ||
|
||
## marketPlace | ||
jar can be upload diretly from the marketplace | ||
|
||
## Google Drive | ||
A google drive access is provided in the configuration (or via the UI), and Cherry upload JAR in this google drive | ||
|
||
## Bucket access | ||
A Bucket access is provided in the configuration (or via the UI), and Cherry upload JAR in this bucket | ||
|
||
## Git Repository | ||
A Git repository is provided in the configuration (or via the UI), and Cherry upload JAR in this Gir Repo (in the release) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
import { render, screen } from '@testing-library/react'; | ||
import {render, screen} from '@testing-library/react'; | ||
import App from './App'; | ||
|
||
test('renders learn react link', () => { | ||
render(<App />); | ||
render(<App/>); | ||
const linkElement = screen.getByText(/learn react/i); | ||
expect(linkElement).toBeInTheDocument(); | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.