2013-09-06 10:54:50 -05:00
|
|
|
// # Ghost bootloader
|
|
|
|
// Orchestrates the loading of Ghost
|
2013-11-19 21:43:55 -05:00
|
|
|
// When run from command line.
|
2013-09-06 10:54:50 -05:00
|
|
|
|
2014-09-01 14:46:37 -05:00
|
|
|
var express,
|
|
|
|
ghost,
|
|
|
|
parentApp,
|
|
|
|
errors;
|
|
|
|
|
|
|
|
// Make sure dependencies are installed and file system permissions are correct.
|
|
|
|
require('./core/server/utils/startup-check').check();
|
|
|
|
|
|
|
|
// Proceed with startup
|
|
|
|
express = require('express');
|
|
|
|
ghost = require('./core');
|
|
|
|
errors = require('./core/server/errors');
|
|
|
|
|
|
|
|
// Create our parent express app instance.
|
|
|
|
parentApp = express();
|
2014-08-23 15:42:44 -05:00
|
|
|
|
2014-09-19 11:17:58 -05:00
|
|
|
ghost().then(function (ghostServer) {
|
2014-08-23 15:42:44 -05:00
|
|
|
// Mount our ghost instance on our desired subdirectory path if it exists.
|
2014-09-19 11:17:58 -05:00
|
|
|
parentApp.use(ghostServer.config.paths.subdir, ghostServer.rootApp);
|
2014-08-23 15:42:44 -05:00
|
|
|
|
|
|
|
// Let ghost handle starting our server instance.
|
2014-09-19 11:17:58 -05:00
|
|
|
ghostServer.start(parentApp);
|
2014-08-19 11:36:46 -05:00
|
|
|
}).catch(function (err) {
|
2014-02-19 22:22:02 -05:00
|
|
|
errors.logErrorAndExit(err, err.context, err.help);
|
2014-08-19 11:36:46 -05:00
|
|
|
});
|