Smart Processes Management
Twilio SMS notifier for Runnerty:
For use with twilio SMS services. More info: twilio on NPM
Through NPM
npm i @runnerty/notifier-twilio
You can also add modules to your project with runnerty
npx runnerty add @runnerty/notifier-twilio
This command installs the module in your project, adds example configuration in your config.json and creates an example plan of use.
If you have installed runnerty globally you can include the module with this command:
runnerty add @runnerty/notifier-twilio
Add it in the notification section of the config.json file. More information here:
{
"id": "twilio_default",
"type": "@runnerty-notifier-twilio",
"account": "AC1234567890",
"token": "ABC123",
"from": "+99123456789"
}
Add add it to any chain or process notification event. More information here:
{
"id": "twilio_default",
"to": "+99123456789",
"message": "Process @GETVALUE(PROCESS_ID) Running!"
}