An open API service indexing awesome lists of open source software.

https://github.com/actionhero/ah-airbrake-plugin

actionhero plugin for airbrake
https://github.com/actionhero/ah-airbrake-plugin

Last synced: 11 months ago
JSON representation

actionhero plugin for airbrake

Awesome Lists containing this project

README

          

## notes
- be sure to enable the plugin within actionhero (`config/plugins.js`)
- you will need to add the airbrake package (`npm install airbrake --save`) to your package.json

You can add a deployment drunt task to clear the previous deploy's errors:
```javascript
grunt.registerTask('notifyAirbrakeDeploy','tell airbrake we deployed',function(message){
var done = this.async()
init(function(api){
api.airbrake.configure();
api.airbrake.client.trackDeployment(function(){
done();
})
})
})
```