workflows-example-dags/Demo/setup-dbt.md
2026-05-28 17:44:11 +02:00

14 lines
No EOL
612 B
Markdown

# Quick Guide How to setup the orchestration of dbt models using StackIT Managed Airflow
This guide gives an overview on how to pragmatically set up orchestrating dbt models through Airflow. It targets users that want to have version control over their SQL Code used in Dremio.
### Step 1: Add you dbt-repo as submodule
```bash
git submodule add git@ssh.dev.azure.com:v3/schwarzit-wiking/schwarzit.data-platform-playground/dbt-demo
```
### Step 2: update your submodule
On every change in the dbt submodule it needs to be updated using the following command:
```bash
git submodule update --remote dbt-demo
```