made some adjustments to copay for copay shell integration

This commit is contained in:
Gordon Hall 2014-06-02 17:00:24 -04:00
commit cd66a12ed3
8 changed files with 161 additions and 102 deletions

View file

@ -26,7 +26,6 @@ var DEFAULT_PORT = process.env.DEFAULT_PORT || 3000;
for (var i=0; i<N; i++) {
var port =(i+DEFAULT_PORT);
console.log('Simulating copayer #'+(i+1)+' at http://localhost:'+port);
var command = 'PORT='+port+' node app.js &'
var command = 'PORT='+port+' npm start &'
exec(command, puts);
}