Be Good. Do Good.
The top level of a dbt workflow is the project. A project is a directory of a .yml file (the project configuration). The project file tells dbt the project context, and the models let dbt know how to build a specific data set.
Models are where your developers spend most of their time within a dbt environment. Models are primarily written as a select statement and ...