e54d959289
closes #8361 - the console.log are not appearing in the logs - fix jscs - remove chalk.green from ghost server
48 lines
1.4 KiB
JavaScript
48 lines
1.4 KiB
JavaScript
// # Ghost Startup
|
|
// Orchestrates the startup of Ghost when run from command line.
|
|
|
|
var startTime = Date.now(),
|
|
debug = require('debug')('ghost:boot:index'),
|
|
ghost, express, logging, errors, utils, parentApp;
|
|
|
|
debug('First requires...');
|
|
|
|
ghost = require('./core');
|
|
|
|
debug('Required ghost');
|
|
|
|
express = require('express');
|
|
logging = require('./core/server/logging');
|
|
errors = require('./core/server/errors');
|
|
utils = require('./core/server/utils');
|
|
parentApp = express();
|
|
|
|
debug('Initialising Ghost');
|
|
ghost().then(function (ghostServer) {
|
|
// Mount our Ghost instance on our desired subdirectory path if it exists.
|
|
parentApp.use(utils.url.getSubdir(), ghostServer.rootApp);
|
|
|
|
debug('Starting Ghost');
|
|
// Let Ghost handle starting our server instance.
|
|
return ghostServer.start(parentApp).then(function afterStart() {
|
|
logging.info('Ghost boot', (Date.now() - startTime) / 1000 + 's');
|
|
|
|
// if IPC messaging is enabled, ensure ghost sends message to parent
|
|
// process on successful start
|
|
if (process.send) {
|
|
process.send({started: true});
|
|
}
|
|
});
|
|
}).catch(function (err) {
|
|
if (!errors.utils.isIgnitionError(err)) {
|
|
err = new errors.GhostError({err: err});
|
|
}
|
|
|
|
if (process.send) {
|
|
process.send({started: false, error: err.message});
|
|
}
|
|
|
|
logging.error(err);
|
|
process.exit(-1);
|
|
});
|