Skip to content

Commit ca1106f

Browse files
committed
issue #60: replace outdated reference to digest.so with newer sqlean modules; comment out extensions by default
1 parent 7d1ca8d commit ca1106f

File tree

1 file changed

+10
-4
lines changed

1 file changed

+10
-4
lines changed

dbt/include/sqlite/sample_profiles.yml

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,11 @@ default:
99
schemas_and_paths:
1010
main: '/my_project/data/etl.db'
1111
schema_directory: '/my_project/data'
12-
extensions:
13-
- '/path/to/sqlite-digest/digest.so'
12+
# optional: list of file paths of SQLite extensions to load. see README for more details.
13+
# extensions:
14+
# - '/path/to/sqlean/crypto.so'
15+
# - '/path/to/sqlean/math.so'
16+
# - '/path/to/sqlean/text.so'
1417

1518
prod:
1619
type: sqlite
@@ -20,7 +23,10 @@ default:
2023
schemas_and_paths:
2124
main: '/my_project/data/etl.db'
2225
schema_directory: '/my_project/data'
23-
extensions:
24-
- '/path/to/sqlite-digest/digest.so'
26+
# optional: list of file paths of SQLite extensions to load. see README for more details.
27+
# extensions:
28+
# - '/path/to/sqlean/crypto.so'
29+
# - '/path/to/sqlean/math.so'
30+
# - '/path/to/sqlean/text.so'
2531

2632
target: dev

0 commit comments

Comments
 (0)