You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
303 B

#!/usr/bin/env node
10 years ago
var ExpressApp = require('./lib/expressapp');
10 years ago
var basePath = process.env.BWS_BASE_PATH || '/bws/api';
var port = process.env.BWS_PORT || 3001;
10 years ago
var app = ExpressApp.start({
basePath: basePath,
});
10 years ago
app.listen(port);
console.log('Bitcore Wallet Service running on port ' + port);