Vulcan/server/start.js
2015-03-28 18:38:20 +09:00

10 lines
229 B
JavaScript

Meteor.startup(function () {
logEvent({
name: "firstRun",
unique: true, // will only get logged a single time
important: true
})
});
if (Settings.get('mailUrl'))
process.env.MAIL_URL = Settings.get('mailUrl');