Setup
note
If you are just getting started with Airlift, we recommend using the new Airlift component.
In this step, we'll:
- Install the example code and review the project structure
- Set up a local environment
- Ensure we can run Airflow locally.
Install example code
First, create a fresh virtual environment using uv
and activate it:
pip install uv
uv venv
source .venv/bin/activate
Next, install Dagster and verify that the dagster
CLI is available:
uv pip install dagster
dagster --version
Finally, install the tutorial example code:
dagster project from-example --name airlift-federation-tutorial --example airlift-federation-tutorial
Project structure
This tutorial example contains the following files and directories:
airlift_federation_tutorial