This is a supporter for getblackboard.com; mainly for static API services. Let's see if this evolves into something else or not.
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.
|
|
|
/**
|
|
|
|
* 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();
|
|
|
|
};
|