pip3 install dbt-core
dbt --help
# init new project in current folder
dbt init
# run dbt models in the project
dbt run
# run tests
dbt tests
## target database manipulations
# clean target db
dbt clean
# create snapshot of the data
dbt snapshot
# load seeds data
dbt seed