Files
old-tfm/app/server/startup.js

14 lines
237 B
JavaScript
Raw Permalink Normal View History

if (Meteor.isServer) {
Meteor.startup(function() {
// code to run on server at startup
2016-02-14 10:34:54 +01:00
SyncedCron.start();
});
// Global API configuration
var Api = new Restivus({
useDefaultAuth: true,
prettyJson: true
});
}