simplabs/ember-cli-airbrake

Name: ember-cli-airbrake

Owner: simplabs

Description: null

Created: 2015-04-09 14:21:16.0

Updated: 2015-04-09 14:21:16.0

Pushed: 2015-05-05 10:54:08.0

Homepage: https://github.com/201-created/ember-cli-airbrake

Size: 138

Language: JavaScript

GitHub Committers

UserMost Recent Commit# Commits

Other Committers

UserEmailMost Recent Commit# Commits

README

ember-cli-airbrake

ember-cli-airbrake is an Ember CLI addon for integrating the Airbrake JS error notifier into your app.

Installation

npm install --save-dev ember-cli-airbrake

Configuration

ember-cli-airbrake is configured per environment. If it isn't configured for a particular environment it will not be built into your ember application for that environment.

You must specify your project_id and project_key for ember-cli-airbrake to work. Your project_id can be found in the url of your project/ app error page.

If you are using Errbit, the open-source, Airbrake API compatible error catcher, you must also set the host parameter to your errbit installation.

onfig/environment.js
le.exports = function(environment) {
r ENV = {
/* ... */

 (environment === 'production') {
ENV.airbrake = {
  projectId:  'my_project_id',
  projectKey: 'my_project_key
  // host: 'http://errors.myapp.com/'
};


turn ENV;


This work is supported by the National Institutes of Health's National Center for Advancing Translational Sciences, Grant Number U24TR002306. This work is solely the responsibility of the creators and does not necessarily represent the official views of the National Institutes of Health.