mirror of
https://github.com/vale981/Vulcan
synced 2025-03-06 10:01:40 -05:00
10 lines
229 B
JavaScript
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');
|