Skip to content

Latest commit

 

History

History
11 lines (9 loc) · 471 Bytes

config.bootstrap.md

File metadata and controls

11 lines (9 loc) · 471 Bytes

Bootstrap

This is an asynchronous boostrap function that runs before your Sails app gets lifted (i.e. starts up). This gives you an opportunity to set up your data model, run jobs, or perform some special logic.

module.exports.bootstrap = function (cb) {

  // It's very important to trigger this callback method when you are finished 
  // with the bootstrap!  (otherwise your server will never lift, since it's waiting on the bootstrap)
  cb();
};