feat(dbt): Add dbt project file

This commit is contained in:
George Myrianthous
2023-03-02 12:24:58 +00:00
parent c2b9a476b9
commit 33b662f737
2 changed files with 27 additions and 1 deletions

View File

@@ -186,7 +186,7 @@
same "printed page" as the copyright notice for easier
identification within third-party archives.
Copyright [yyyy] [name of copyright owner]
Copyright [2023] [Giorgos Myrianthous]
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.

26
dbt_project.yml Normal file
View File

@@ -0,0 +1,26 @@
name: 'jaffle_shop'
config-version: 2
version: '0.1'
profile: 'jaffle_shop'
model-paths: ["models"]
seed-paths: ["seeds"]
test-paths: ["tests"]
analysis-paths: ["analysis"]
macro-paths: ["macros"]
target-path: "target"
clean-targets:
- "target"
- "dbt_modules"
- "logs"
require-dbt-version: [">=1.0.0", "<2.0.0"]
models:
jaffle_shop:
materialized: table
staging:
materialized: view