0e521792aa
refs https://github.com/TryGhost/Ghost-CLI/issues/759 - Ghost will announce the server start or failure in each case - therefor you have to configure a bootstrap socket host and port
46 lines
1.4 KiB
JavaScript
46 lines
1.4 KiB
JavaScript
// # Ghost Startup
|
|
// Orchestrates the startup of Ghost when run from command line.
|
|
|
|
var startTime = Date.now(),
|
|
debug = require('ghost-ignition').debug('boot:index'),
|
|
ghost, express, common, urlService, parentApp, config, GhostServer;
|
|
|
|
debug('First requires...');
|
|
|
|
ghost = require('./core');
|
|
|
|
debug('Required ghost');
|
|
|
|
express = require('express');
|
|
GhostServer = require('./core/server/ghost-server');
|
|
config = require('./core/server/config');
|
|
urlService = require('./core/server/services/url');
|
|
parentApp = express();
|
|
|
|
debug('Initialising Ghost');
|
|
ghost().then(function (ghostServer) {
|
|
// Mount our Ghost instance on our desired subdirectory path if it exists.
|
|
parentApp.use(urlService.utils.getSubdir(), ghostServer.rootApp);
|
|
|
|
debug('Starting Ghost');
|
|
// Let Ghost handle starting our server instance.
|
|
return ghostServer.start(parentApp)
|
|
.then(function afterStart() {
|
|
common.logging.info('Ghost boot', (Date.now() - startTime) / 1000 + 's');
|
|
|
|
if (!config.get('maintenance:enabled')) {
|
|
return GhostServer.announceServerStart();
|
|
}
|
|
});
|
|
}).catch(function (err) {
|
|
if (!common.errors.utils.isIgnitionError(err)) {
|
|
err = new common.errors.GhostError({message: err.message, err: err});
|
|
}
|
|
|
|
return GhostServer.announceServerStopped(err)
|
|
.finally(() => {
|
|
common.logging.error(err);
|
|
process.exit(-1);
|
|
});
|
|
});
|