You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
677 B
18 lines
677 B
/** |
|
* Bootstrap |
|
* (sails.config.bootstrap) |
|
* |
|
* An asynchronous bootstrap function that runs before your Sails app gets lifted. |
|
* This gives you an opportunity to set up your data model, run jobs, or perform some special logic. |
|
* |
|
* For more information on bootstrapping your app, check out: |
|
* http://sailsjs.org/#!/documentation/reference/sails.config/sails.config.bootstrap.html |
|
*/ |
|
|
|
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) |
|
sails.hooks.http.app.set('trust proxy', true); |
|
cb(); |
|
};
|
|
|