forked from absolutebi/jaffle_shop
feat(dbt): Add dbt project file
This commit is contained in:
2
LICENSE
2
LICENSE
@@ -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
26
dbt_project.yml
Normal 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
|
||||
Reference in New Issue
Block a user