Interactive web-based simulator for the Conclave framework.
├─ src/ Source functionalities
├─ tests/ Test suite
│ ├─ conclave/ Workflows to test resulting data
│ └─ policy/ Workflow validation tests
├─ web/ UI root
│ ├─ src/ Simulator include files
│ └─ dist/ Simulator bundle (simulator.js)
Open web/index.html
in a browser.
We use Browserfy to bundle the simulator library. Developers can intall it from npm via npm install -g browserify
.
To make any changes active, compile them to the simulator bundle in web/dist/simulator.js
. You can do this by running:
browserify src/simulator.js --debug --s simulator -o dist/simulator.js