Knovour
3/2/2015 - 8:49 AM

sails-bootstrap-example.js

module.exports.bootstrap = function(cb) {
  String.prototype.capitalize = function() {
    return this.charAt(0).toUpperCase() + this.slice(1);
  };

  sails.moment = require('moment');

  setInterval(function() {
    XXXModel.find({}, function(err, doc) {
      // code here
    })
  }, 3600000); // an hour

  cb();
};