Converting an existing project to use dg
warning
This feature is considered in a preview stage and is under active development. It can change significantly, or be removed completely. It is not considered ready for production use.
note
This guide is only relevant if you are starting from an existing Dagster project. This setup is unnecessary if you scaffolded a new project with dg scaffold project
.
We have a basic existing Dagster project and have been using pip
to manage
our Python environment. Our project defines a Python package with a setup.py
and a single Dagster asset. The asset is exposed in a top-level Definitions
object in my_existing_project/definitions.py
.
tree
.
├── my_existing_project
│ ├── __init__.py
│ ├── assets.py