-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[components] [docs] Initial components guide
- Loading branch information
Showing
1 changed file
with
44 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
--- | ||
title: "Dagster Components basics" | ||
sidebar_position: 200 | ||
--- | ||
|
||
Welcome to Dagster Components. | ||
|
||
Dagster Components is a new way to structure your Dagster projects. It aims to provide: | ||
|
||
- An opinionated project layout that supports ongoing scaffolding from “Hello world” to the most advanced projects | ||
Check warning on line 10 in docs/docs-beta/docs/guides/build/components.md GitHub Actions / runner / vale
Check warning on line 10 in docs/docs-beta/docs/guides/build/components.md GitHub Actions / runner / vale
|
||
- A class-based interface for dynamically constructing definitions | ||
- A toolkit to build YAML DSL frontends for components so that components can be constructed in a low-code fashion. | ||
- A format for components to provide their own scaffolding, in order to organize and reference integration-specific artifacts files. | ||
Check warning on line 13 in docs/docs-beta/docs/guides/build/components.md GitHub Actions / runner / vale
|
||
|
||
## Project Setup | ||
|
||
```bash | ||
brew install uv && uv tool install dagster-dg | ||
``` | ||
|
||
```bash | ||
dg generate code-location jaffle_platform | ||
``` | ||
|
||
```bash | ||
find jaffle_platform | ||
``` | ||
|
||
```bash | ||
jaffle_platform | ||
# .env # TODO hypothesized | ||
jaffle_platform/ | ||
lib/ # project-specific component library | ||
components/ # all components live in here | ||
jaffle_platform_tests/ | ||
``` | ||
|
||
## Hello Platform | ||
|
||
We are going to effortlessly setup a data platform using sling to ingest data, dbt to process the data, and python to do AI. | ||
Check warning on line 40 in docs/docs-beta/docs/guides/build/components.md GitHub Actions / runner / vale
|
||
|
||
### Ingest | ||
|
||
First we set up sling. |