@@ -3,54 +3,20 @@ default:
33
44 dev :
55 type : sqlite
6-
7- # sqlite locks the whole db on writes so anything > 1 won't help
86 threads : 1
9-
10- database : [database name]
11-
12- # value of 'schema' must be defined in `schemas_and_paths` below. in most cases,
13- # this should be 'main'
7+ database : <database name>
148 schema : ' main'
15-
16- # connect schemas to paths: at least one of these must be 'main'
17- # semi-colon separated list of file paths
18- # format: 'schema_1=/my_project/data/file_1.db;schema_2=/my_project/data/file_2.db'
199 schemas_and_paths : ' main=/my_project/data/etl.db'
20-
21- # directory where all *.db files are attached as schemata, using base filename
22- # as schema name, and where new schemata are created. this can overlap with the dirs of
23- # files in `schemas_and_paths` as long as there's no conflicts.
2410 schema_directory : ' /my_project/data'
25-
26- # optional: semi-colon separated list of file paths for SQLite extensions to load.
27- # digest.so is needed to provide for snapshots to work; see README
2811 extensions : ' /path/to/sqlite-digest/digest.so'
2912
3013 prod :
3114 type : sqlite
32-
33- # sqlite locks the whole db on writes so anything > 1 won't help
3415 threads : 1
35-
36- database : [database name]
37-
38- # value of 'schema' must be defined in `schemas_and_paths` below. in most cases,
39- # this should be 'main'
16+ database : <database name>
4017 schema : ' main'
41-
42- # connect schemas to paths: at least one of these must be 'main'
43- # semi-colon separated list of file paths
44- # format: 'schema_1=/my_project/data/file_1.db;schema_2=/my_project/data/file_2.db'
4518 schemas_and_paths : ' main=/my_project/data/etl.db'
46-
47- # directory where all *.db files are attached as schemata, using base filename
48- # as schema name, and where new schemata are created. this can overlap with the dirs of
49- # files in `schemas_and_paths` as long as there's no conflicts.
5019 schema_directory : ' /my_project/data'
51-
52- # optional: semi-colon separated list of file paths for SQLite extensions to load.
53- # digest.so is needed to provide for snapshots to work; see README
5420 extensions : ' /path/to/sqlite-digest/digest.so'
5521
5622 target : dev
0 commit comments