Skip to content

Commit

Permalink
embed duckdb example profiles
Browse files Browse the repository at this point in the history
  • Loading branch information
adonm committed Jun 6, 2024
1 parent e29afbc commit a6fe610
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 2 deletions.
3 changes: 2 additions & 1 deletion dbt_example_project/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,5 @@
target/
dbt_packages/
logs/
*.duckdb
*.duckdb
.user.yml
2 changes: 1 addition & 1 deletion dbt_example_project/dbt_project.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ name: 'dbt_example_project'
version: '1.0.0'

# This setting configures which "profile" dbt uses for this project.
profile: 'dbt_example_project'
profile: 'default'

# These configurations specify where dbt should look for different types of files.
# The `model-paths` config, for example, states that models in this project can be
Expand Down
13 changes: 13 additions & 0 deletions dbt_example_project/profiles.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
default:
outputs:
dev:
type: duckdb
path: dev.duckdb
threads: 1

prod:
type: duckdb
path: prod.duckdb
threads: 4

target: dev

0 comments on commit a6fe610

Please sign in to comment.