How do I pass environment variables from bashrc to Ember CLI. I imagine a situation where you need stripe api keys or pusher api-keys and you have them in your environment v
You can also set the variables on the ENV.APP object: they will be carried by the application instance.
ENV.APP
You can then reuse them inside initializer & so on.
This way, you won't have to import config/environment into application's code, which seems a little weird to me.
config/environment