I’m looking for feedback on the bash script used to manage the containers accompanying the NEM dev guide. It is available at https://raw.githubusercontent.com/rb2nem/nem-dev-guide/master/docker/ndev
to test it, you first download it with curl https://raw.githubusercontent.com/rb2nem/nem-dev-guide/master/docker/ndev > ndev
, make it executable with chmod +x ndev
and run ndev --help
to get information about its options.
running ./ndev
will download 2 images from docker hub and start 2 containers in the background, one running NIS on the testnet, and one running mitmproxy for debugging requests to the NIS instance
you can get a nodejs repl with nem-sdk loaded under the variable nem with ./ndev repl.js
I’ll soon add a detailed description of this in the dev guide, but am interested in getting some feedback first.
Thanks!