17 lines
697 B
Django/Jinja
17 lines
697 B
Django/Jinja
# Name your project! Project names should contain only lowercase characters
|
|
name: 'waffle_shop'
|
|
version: '1.0.0'
|
|
config-version: 2
|
|
|
|
# Just like dft, this setting configures which "profile" dft uses for this project.
|
|
# Do not forget to configure your connection.yml file in ~/.dft folder
|
|
profile: 'profile-name'
|
|
target-name: 'target_connection_name' # Change Target file in .dft
|
|
|
|
# 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
|
|
# found in the "models/" directory. You probably won't need to change these!
|
|
test-paths: ["tests"]
|
|
query-paths: ["queries"]
|
|
migration-path: "migration"
|