feat(notification): add pushover (#55)

Co-authored-by: Jef LeCompte <jeffreylec@gmail.com>
This commit is contained in:
Thomas Herrell
2020-09-19 14:55:21 -05:00
committed by GitHub
parent 8aba7ecbdb
commit c85658bf82
7 changed files with 40 additions and 0 deletions
+4
View File
@@ -25,6 +25,10 @@ const notifications = {
channel: process.env.SLACK_CHANNEL ?? '',
token: process.env.SLACK_TOKEN ?? ''
},
pushover: {
token: process.env.PUSHOVER_TOKEN,
user: process.env.PUSHOVER_USER
},
test: process.env.NOTIFICATION_TEST ?? 'false',
playSound: process.env.PLAY_SOUND ?? 'false'
};