2014-12-31 19:05:00 +09:00
|
|
|
Meteor.startup(function () {
|
|
|
|
logEvent({
|
|
|
|
name: "firstRun",
|
|
|
|
unique: true, // will only get logged a single time
|
|
|
|
important: true
|
|
|
|
})
|
2015-01-02 16:05:28 +09:00
|
|
|
});
|
|
|
|
|
|
|
|
if (getSetting('mailUrl'))
|
|
|
|
process.env.MAIL_URL = getSetting('mailUrl');
|