mirror of
https://github.com/vale981/Vulcan
synced 2025-03-10 04:26:41 -04:00
14 lines
No EOL
285 B
JavaScript
14 lines
No EOL
285 B
JavaScript
Meteor.startup(function () {
|
|
Events.log({
|
|
name: "firstRun",
|
|
unique: true, // will only get logged a single time
|
|
important: true
|
|
})
|
|
});
|
|
|
|
if (Settings.get('mailUrl'))
|
|
process.env.MAIL_URL = Settings.get('mailUrl');
|
|
|
|
Meteor.startup(function() {
|
|
SyncedCron.start();
|
|
}); |