Skip to content

Latest commit

 

History

History
41 lines (28 loc) · 921 Bytes

README.md

File metadata and controls

41 lines (28 loc) · 921 Bytes

ember-export-config

Ever wanted to have your environment.js file kept not in the meta but as a separate file? Well this addon is doing just that!

This addon will create a new file called config.js in your assets directory.

You'll need to add it in your index.html file.

Configuration

If you want to configure it, those are the defaults:

  var app = new EmberApp(defaults, {
    'ember-export-config': {
      enabled: true,
      fileName: 'config.js'
    }
  });

Installation

  • git clone this repository
  • npm install
  • bower install

Running

Running Tests

  • npm test (Runs ember try:testall to test your addon against multiple Ember versions)
  • ember test
  • ember test --server

Building

  • ember build

For more information on using ember-cli, visit http://www.ember-cli.com/.