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

6
server.js Normal file
View file

@ -0,0 +1,6 @@
var server = require('./app');
var port = process.env.PORT || 3000;
server.start(port, function(loc){
console.log('Listening at: ' + loc);
});