Skip to content
This repository has been archived by the owner on Dec 15, 2019. It is now read-only.

actionhero/ah-airbrake-plugin

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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:

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();
    })
  })
})

About

actionhero plugin for airbrake

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published