2013-07-17 16:21:33 +08:00
|
|
|
var argv = require('optimist').argv;
|
2013-07-10 16:10:38 +08:00
|
|
|
var dialog = require('dialog');
|
2013-07-17 16:21:33 +08:00
|
|
|
var path = require('path');
|
2013-04-17 20:05:43 +08:00
|
|
|
|
2013-07-17 16:21:33 +08:00
|
|
|
// Start the specified app if there is one specified in command line, otherwise
|
|
|
|
// start the default app.
|
|
|
|
if (argv._.length > 0) {
|
2013-07-24 15:20:59 +08:00
|
|
|
try {
|
|
|
|
require(path.resolve(argv._[0]));
|
|
|
|
} catch(e) {
|
|
|
|
if (e.code == 'MODULE_NOT_FOUND') {
|
|
|
|
console.error('Specified app is invalid');
|
|
|
|
process.exit(1);
|
|
|
|
} else {
|
|
|
|
throw e;
|
|
|
|
}
|
|
|
|
}
|
2013-07-17 16:21:33 +08:00
|
|
|
} else {
|
|
|
|
require('./default_app.js');
|
2013-04-15 15:39:54 +08:00
|
|
|
}
|