Replies: 3 comments 3 replies
-
Hi Paolo, But to answer your question about supporting custom datastore:
dataStore: function (server) {
return new CustomDataStore(server);
},
class CustomDataStore extends ServerComponent implements IDataStore {
}
Also, you are more than welcome to contribute to bpmn-server through pull-request. Thanks, |
Beta Was this translation helpful? Give feedback.
3 replies
-
Beta Was this translation helpful? Give feedback.
0 replies
-
I finished creating a pull request |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I try to create an extension for the loopback microservice framework using a Postgresql Database as the backend.
In the first experiment, I copied the source code from bpmn-server (ver 1.1.10) and modified some files and filenames.
I created the loopback model mapped with Postgresl
I exposed some methods using the loopback4 endpoint.
Example:
To support parallel-gateway I modified gateway.ts.
To facilitate the debug I added the debug library
To integrate in loopback4 services using the main bpmn-server repository, I need to :
It is feasible to modify the code of bpmn-server to facilitate the integration in the loopback server framework?
I want to share my loopback4-bpmnserver-component in GitHub and contribute to bpmn-server project.
Regards
Paolo
Beta Was this translation helpful? Give feedback.
All reactions