Skip to content

Commit 2f10113

Browse files
authored
Merge pull request #4 from dbeatty10/support-adapter-flag
Adapter-specific profile template
2 parents 4af6f2f + 261c79c commit 2f10113

File tree

2 files changed

+23
-0
lines changed

2 files changed

+23
-0
lines changed
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
default:
2+
outputs:
3+
4+
dev:
5+
type: sqlite
6+
threads: 1
7+
database: <database name>
8+
schema: 'main'
9+
schemas_and_paths: 'main=/my_project/data/etl.db'
10+
schema_directory: '/my_project/data'
11+
extensions: '/path/to/sqlite-digest/digest.so'
12+
13+
prod:
14+
type: sqlite
15+
threads: 1
16+
database: <database name>
17+
schema: 'main'
18+
schemas_and_paths: 'main=/my_project/data/etl.db'
19+
schema_directory: '/my_project/data'
20+
extensions: '/path/to/sqlite-digest/digest.so'
21+
22+
target: dev

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@
2424
'macros/**/*.sql',
2525
'macros/**/**/*.sql',
2626
'dbt_project.yml',
27+
'sample_profiles.yml',
2728
]
2829
},
2930
install_requires=[

0 commit comments

Comments
 (0)