https://github.com/kvdomingo/dagster-notif-template
Barebones Dagster template for pipeline failure notifications via Slack and email
https://github.com/kvdomingo/dagster-notif-template
aws-ses dagster python slack-api
Last synced: 3 months ago
JSON representation
Barebones Dagster template for pipeline failure notifications via Slack and email
- Host: GitHub
- URL: https://github.com/kvdomingo/dagster-notif-template
- Owner: kvdomingo
- Created: 2024-07-30T03:17:55.000Z (11 months ago)
- Default Branch: main
- Last Pushed: 2024-09-23T06:03:18.000Z (9 months ago)
- Last Synced: 2025-01-18T22:46:27.083Z (5 months ago)
- Topics: aws-ses, dagster, python, slack-api
- Language: Python
- Homepage:
- Size: 65.4 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# dagster-notif-template
This is a barebones Dagster template that includes code for pipeline failure notifications via Slack and email. AWS SES
is used here as the email service; adjust any code and variables as needed if you're using a different email service (
i.e. Sendgrid, SMTP).## Prerequisites
- [ ] Python 3.11
- [ ] Poetry## Setup
```shell
poetry install --no-root --with dev
```Copy the contents of `.env.example` into a new file named `.env` and supply the needed values.
## Running locally
```shell
poetry run dagster dev -p 3000
```