- Pass along services location and additional services for the default. - Reference specific commit of bitcore-build and remove mode hints.
8 lines
254 B
JavaScript
Executable File
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);
|