Back to Ohmyzsh

dbt plugin

plugins/dbt/README.md

latest1.4 KB
Original Source

dbt plugin

The dbt plugin adds several aliases for useful dbt commands and aliases.

To use it, add dbt to the plugins array of your zshrc file:

zsh
plugins=(... dbt)

Aliases

AliasCommandDescription
dbtlmdbt ls -s state:modifiedList modified models only
dbtrmdbt run -s state:modifiedRun modified models only
dbttmdbt test -m state:modifiedTest modified models only
dbtrtmdbtrm && dbttmRun and test modified models only
dbtrsdbt clean; dbt deps; dbt seedRe-seed data
dbtfrtdbtrs; dbt run --full-refresh; dbt testPerform a full fresh run with tests
dbtcdsdbt docs generate; dbt docs serveGenerate docs without compiling
dbtdsdbt docs generate --no-compile; dbt docs serveGenerate and serve docs skipping doc. re-compilation

Maintainer