+ button in the Terminal tab or use the keyboard shortcut ⌃⇧` / Ctrl+⇧+`. You can open multiple terminals and split them side by side.
Check the list of all available dbt™ commands here.
The Run button
The Run button at the top of the bottom panel builds the file you have open without typing a command. It offers popular dbt™ operations for the model in focus, with options to include upstream or downstream nodes:- only the current selected resource:
dbt run --select <model_name> - the resource with upstream dependencies:
dbt run --select +<model_name> - the resource with downstream dependencies:
dbt run --select <model_name>+
dbt™ autocompletion
The Paradime terminal provides autocompletion for dbt™ commands. You can tab-complete model, tag, source, and package selectors passed to node selection flags like--select and --exclude. See the dbt™ node selection syntax docs.
Type dbt in your terminal and use the ⇥tab key to trigger dbt™ autocompletion.
Use the
⇥tab or up/down keys to navigate through the list of resources and commands.