create-dagster CLI
Installation
See the Installation guide.
Commands
create-dagster project
Scaffold a new Dagster project at PATH. The name of the project will be the final component of PATH.
This command can be run inside or outside of a workspace directory. If run inside a workspace, the project will be added to the workspace’s list of project specs.
“.” may be passed as PATH to create the new project inside the existing working directory.
Created projects will have the following structure:
├── src
│ └── PROJECT_NAME
│ ├── __init__.py
│ ├── definitions.py
│ ├── defs