2c3abeee03
closes #4069 - Rename everything from camelCase to lowercase + dashes - Remove usage of `server`, `app` and `instance`
20 lines
645 B
JavaScript
20 lines
645 B
JavaScript
// # Ghost bootloader
|
|
// Orchestrates the loading of Ghost
|
|
// When run from command line.
|
|
|
|
var express = require('express'),
|
|
ghost = require('./core'),
|
|
errors = require('./core/server/errors'),
|
|
// Create our parent express app instance.
|
|
parentApp = express();
|
|
|
|
ghost().then(function (ghostServer) {
|
|
// Mount our ghost instance on our desired subdirectory path if it exists.
|
|
parentApp.use(ghostServer.config.paths.subdir, ghostServer.rootApp);
|
|
|
|
// Let ghost handle starting our server instance.
|
|
ghostServer.start(parentApp);
|
|
}).catch(function (err) {
|
|
errors.logErrorAndExit(err, err.context, err.help);
|
|
});
|