Easily get values from your app's config/environment.js
with a service.
Install this addon by running the following with Ember CLI.
ember install ember-config-service
The config
service is now available for you to use in your app. For example, if you added the following to your config/environment.js
:
ENV.api = {
host: 'http://mydomain.com',
namespace: 'myapi'
};
You could define your application adapter with the following:
import Ember from 'ember';
import DS from 'ember-data';
export default DS.JSONAPIAdapter.extend({
config: Ember.inject.service(),
host: Ember.computed.alias('config.api.host'),
namespace: Ember.computed.alias('config.api.namespace')
});
Pull requests and issues are welcome!
git clone
this repositorynpm install
bower install
ember server
- Visit your app at http://localhost:4200.
npm test
(Runsember try:testall
to test your addon against multiple Ember versions)ember test
ember test --server
ember build
For more information on using ember-cli, visit http://www.ember-cli.com/.