flocore/bin/bitcore
Braydon Fuller e9015d6149 Fix double bitcore-lib loading issue
- Pass along services location and additional services for the default.
- Reference specific commit of bitcore-build and remove mode hints.
2015-10-20 12:42:14 -04:00

8 lines
254 B
JavaScript
Executable File

#!/usr/bin/env node
var bitcore = require('bitcore-node/lib/cli/bitcore');
var path = require('path');
var servicesPath = path.resolve(__dirname, '../');
var additionalServices = ['insight-api', 'insight-ui'];
bitcore(servicesPath, additionalServices);