Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/guidopetri/dagster-dags
All DAGs that I need for Dagster in a separate repo from any project code.
https://github.com/guidopetri/dagster-dags
Last synced: about 1 month ago
JSON representation
All DAGs that I need for Dagster in a separate repo from any project code.
- Host: GitHub
- URL: https://github.com/guidopetri/dagster-dags
- Owner: guidopetri
- License: gpl-3.0
- Created: 2024-11-29T17:38:23.000Z (about 1 month ago)
- Default Branch: master
- Last Pushed: 2024-11-29T22:16:03.000Z (about 1 month ago)
- Last Synced: 2024-11-29T23:22:00.340Z (about 1 month ago)
- Language: Dockerfile
- Size: 85.9 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Dagster DAGs
This is a simple extension of the standard Dagster docker image that contains various projects' DAGs within the image itself.
## Adding a new project
To add a new project, create a new repo-level folder with a `dags.py` file within it and add it to the `workspace.yaml`:
```yaml
load_from:
- python_module: new_project.dags
```Additionally, copy the folder into the docker image in `Dockerfile`:
```Dockerfile
COPY new_project/ /app/new_project/
```