feat: initial project setup

This commit is contained in:
Stijnvandenbroek
2026-03-03 12:18:30 +00:00
parent 62af3114be
commit 7dd520cf41
14 changed files with 295 additions and 1 deletions

View File

@@ -0,0 +1,12 @@
version: 2
models:
- name: stg_example
description: >
A placeholder staging model. Replace with your actual source tables.
columns:
- name: id
description: Primary key.
tests:
- unique
- not_null

View File

@@ -0,0 +1,5 @@
-- Placeholder staging model.
-- Replace this with your actual source query, e.g.:
-- select * from {{ source('my_source', 'my_table') }}
select 1 as id, 'example' as name