Configuring Your App Edit Page


Ember CLI ships with support for managing your application's environment. Ember CLI will setup a default environment config file at config/environment. Here, you can define an ENV object for each environment, which are currently limited to three: development, test, and production.

The ENV object contains three important keys:

You can access these environment variables in your application code by importing from your-application-name/config/environment.

For example:

1
2
3
4
5
import ENV from 'your-application-name/config/environment';

if (ENV.environment === 'development') {
  // ...
}