Sharing this in the hope it can help or inspire others.
If you want to run Nem locally, you have to start up NIS, then NCC, then access it with a browser. I use this script to do it all on a Linux host. <br />#!/bin/bash<br /><br />PATH=/usr/local/jre1.8.0_40/bin/:$PATH<br /><br />tmux new -d -s "nem" "PATH=/usr/local/jre1.8.0_40/bin/:$PATH ./nix.runNis.sh && read a"<br />tmux split-window -t "nem" "PATH=/usr/local/jre1.8.0_40/bin/:$PATH ./nix.runNcc.sh"<br />tmux split-window -t "nem" "uzbl http://127.0.0.1:8989"<br />tmux attach-session -t "nem"<br />
Thanks dudeā¦ agreed just works!