0.1.0 • Published 9 years ago

mogy-pushover v0.1.0

Weekly downloads
3
License
MIT
Repository
-
Last release
9 years ago

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 !'
    }
})