Files
cyphernode/cyphernodeconf_docker/index.js
2019-06-03 17:19:55 -04:00

13 lines
290 B
JavaScript

const App = require( './lib/app.js' );
const main = async ( args ) => {
const app = new App();
const noWizard = args.indexOf('recreate') !== -1;
await app.start( {
noWizard: noWizard,
noSplashScreen: noWizard
} );
};
main( process.argv.slice( 2, process.argv.length ) );