0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-01-06 22:40:14 -05:00
ghost/ghost.js

16 lines
255 B
JavaScript
Raw Normal View History

const argv = process.argv;
const mode = argv[2] || 'new';
// Switch between boot modes
switch (mode) {
case 'old':
case '3':
// Old boot sequence
require('./startup');
break;
default:
// New boot sequence
require('./core/boot')();
}