mogy-pushover
v0.1.0
Published
Pushover activity for Mogy
Downloads
1
Readme
mogy-pushover
Pushover notification activity for mogy.
Installation
In your mogy project, install the dependency using npm :
$ npm install mogy-pushover --save
To register the pushover
activity to Amazon Simple Workflow :
$ mogy register
Config
In your mogy environment config file, under the activities
key, add :
"pushover": {
"apptoken": "*****"
}
And specify your Pushover appToken.
Sample Decider Usage
activity({
name: 'my-task',
activity: 'pushover',
input: {
userkey: 'user token to send to',
title: 'Test message',
msg: 'Hi ! This message was sent by a mogy app !'
}
})