Vulcan/packages/telescope-core/lib/server/start.js

14 lines
285 B
JavaScript
Raw Normal View History

Meteor.startup(function () {
Events.log({
name: "firstRun",
2015-03-28 18:30:26 +09:00
unique: true, // will only get logged a single time
important: true
})
2015-01-02 16:05:28 +09:00
});
2015-03-28 18:30:26 +09:00
if (Settings.get('mailUrl'))
process.env.MAIL_URL = Settings.get('mailUrl');
2015-04-22 11:33:36 +09:00
Meteor.startup(function() {
SyncedCron.start();
});