Files
old-tfm/app/server/startup.js
2016-04-09 07:11:08 +02:00

14 lines
237 B
JavaScript

if (Meteor.isServer) {
Meteor.startup(function() {
// code to run on server at startup
SyncedCron.start();
});
// Global API configuration
var Api = new Restivus({
useDefaultAuth: true,
prettyJson: true
});
}