https://github.com/zodern/mup-deploy-notifications
Receive a notification when Meteor Up finishes a deploy
https://github.com/zodern/mup-deploy-notifications
Last synced: about 1 year ago
JSON representation
Receive a notification when Meteor Up finishes a deploy
- Host: GitHub
- URL: https://github.com/zodern/mup-deploy-notifications
- Owner: zodern
- Created: 2020-07-21T16:40:33.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2023-02-09T03:20:32.000Z (over 3 years ago)
- Last Synced: 2024-10-19T15:15:54.655Z (over 1 year ago)
- Language: JavaScript
- Homepage:
- Size: 21.5 KB
- Stars: 2
- Watchers: 3
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: readme.md
- Changelog: changelog.md
Awesome Lists containing this project
README
# Mup Deploy Notifications
Sends Slack notifications when a deploy starts and when it succeeds or fails.
Install it with:
```sh
npm install mup-deploy-notifications
```
and add it to your `plugins` array in your mup config:
```js
module.exports = {
// ... rest of config
plugins: [ 'mup-deploy-notifications' ]
}
```
Next, add a `deployNotifications` object to your mup config:
```js
module.exports = {
// ... rest of config
deployNotifications: {
// Add the incoming webhooks app (https://slack.com/apps/A0F7XDUAZ-incoming-webhooks)
// to get a webhook url
slackWebhookUrl: 'https://hooks.slack.com/services/789/1234345/abcdefg',
// Name of slack channel to receive the messages
slackChannel: '#deploys'
}
}
```