add dbt run

This commit is contained in:
counterweight 2025-07-27 09:27:54 +02:00
parent c0990bf87c
commit 96884a8c89
Signed by: counterweight
GPG key ID: 883EDBAA726BD96C
5 changed files with 31 additions and 1 deletions

View file

@ -26,4 +26,7 @@ clean-targets:
- dbt_packages
- logs
models:
my_meltano_project: null
my_meltano_project:
staging:
+schema: staging

View file

@ -0,0 +1,8 @@
config-version: 2
version: 2
sources:
- name: app # the name we want to reference this source by
schema: tap_app # the schema the raw data was loaded into
tables:
- name: customers
- name: pizza_orders

View file

@ -0,0 +1,12 @@
{{
config(
materialized='table'
)
}}
with raw_pizza_orders as (
select *
from {{ source('app', 'pizza_orders') }}
)
select *
from raw_pizza_orders