Reputation: 79
Are there any instructions on how to install the Corda Demobench on Ubuntu?
There is a download section here which offers installers for Windows and Mac OS X.
There is a link for how to build a linux installer but I can't find any links to the source code.
Upvotes: 2
Views: 369
Reputation: 1052
Clone the Corda from git:
https://github.com/corda/corda.git
Navigate to demobench:
cd #directory you cloned#/corda/tools/demobench
Run:
./gradlew tools:demobench:installDist
This will build demobench.
Lastly you can navigate to the build directory:
cd tools/demobench/build/install/demobench
and run the tool:
bin/demobench
Upvotes: 1
Reputation: 23140
The scripts referred to in the documentation can be found here: https://github.com/corda/corda/tree/master/tools/demobench.
To build the installer, clone the Corda repository (git clone https://github.com/corda/corda
) and run the script.
Upvotes: 1