Install the addon:
ember install ember-cli-bugsnag
There are two ways to configure ember-cli-bugsnag
:
- Add POJO to
config/environment
:
{
bugsnag: {
apiKey: '',
notifyReleaseStages: ['development', 'production']
}
}
- Specify environment variables:
export BUGSNAG_API_KEY=''
export BUGSNAG_NOTIFY_RELEASE='development,production'