Vulcan/server/start.js

11 lines
229 B
JavaScript
Raw Normal View History

Meteor.startup(function () {
logEvent({
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');