We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 02ccfa2 commit 7d0fe86Copy full SHA for 7d0fe86
ghost/core/core/boot.js
@@ -108,6 +108,12 @@ async function initCore({ghostServer, config}) {
108
urlService.init();
109
debug('End: Url Service');
110
111
+ // Models are the heart of Ghost - we want to explicitly load them here so their require time
112
+ // isn't hidden in other steps
113
+ debug('Begin: models');
114
+ require('./server/models');
115
+ debug('End: models');
116
+
117
if (ghostServer) {
118
// Job Service allows parts of Ghost to run in the background
119
debug('Begin: Job Service');
0 commit comments