Skip to content

Reportr/alerts-sms

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

SMS Alerts for Reportr

How to add it to your instance?

Add reportr-alerts-sms to the package.json and load it in your Reportr configuration:

reportr.configure({
    alerts: [
        require("reportr-alerts-sms")({
            sId: process.env.TWILIO_SID,
            token: process.env.TWILIO_TOKEN,
            from: process.env.TWILIO_FROM
        })
    ]
});