Reputation: 1509
We have developed few apps in corda. Just wondering if we can deploy the different corda apps on a single node. Is it possible to do if yes then how we can proceed with this.
Currently when we deploy our application, it opens each node and run the service- state,flow for each nodes.
Upvotes: 1
Views: 477
Reputation: 23140
Yes, a node can have several CorDapps running at once. You build and install them as follows:
At runtime, your node will loads all the CorDapp JARs in its plugins/cordapps folder.
Upvotes: 2