You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
in my app/server/smtp.coffee I put this lines of code
Meteor.startup->if (Meteor.isServer)
console.log(process.env.VALUE_FROM_ENV) # THIS IS NOT WORKING (undefined)console.log(Meteor.settings.VALUE_FROM_SETTINGS) # this is working as expected
I simply started my app with iron run or ìron which outputs the following into the console:
> meteor run --settings /Users/me/Meteor/meteor_template/config/development/settings.json
[[[[[ ~/Meteor/meteor_template/app ]]]]]
=> Started proxy.
=> Started MongoDB.
=> Started your app.
=> App running at: http://localhost:3000/
I20150616-17:04:30.279(2)? env_value
I20150616-17:04:30.280(2)? undefined
What I am doing wrong?
best regards
The text was updated successfully, but these errors were encountered:
As the headline assumes I can't get implemented my
env.sh
file.env.sh
settings.json
in my
app/server/smtp.coffee
I put this lines of codeI simply started my app with
iron run
orìron
which outputs the following into the console:What I am doing wrong?
best regards
The text was updated successfully, but these errors were encountered: