Skip to main content

_wizard-cli-full-generated

How to read this reference

  • Flag — the full flag as typed. Short flags (e.g. -m) are listed in the Short column.
  • Typeboolean (presence/absence), string, path, or an enumeration of allowed values.
  • Description — what the flag does and when to use it.
  • Global flags apply to the base interactive wizard command. Subcommands can have different flag sets; use each command's section for automation.
Share your feedback!

We'd love to hear how dbt Wizard is working for you. Share your feedback by either running the /feedback slash command in your interactive terminal session or by going to the #dbt-wizard channel in the dbt Community Slack.

Thanks so much for your help in improving dbt Wizard and dbt data development!

Global flags

These flags work on the base interactive wizard command.

FlagShortTypeDescription
-c, --config <key=value>-cstringOverride a configuration value that would otherwise be loaded from ~/.dbt/wizard/config.toml. Use a dotted path (foo.bar.baz) to override nested values. The value portion is parsed as TOML. If it fails to parse as TOML, the raw string is used as a literal.
--enable <FEATURE>stringEnable a feature (repeatable). Equivalent to -c features.&lt;name&gt;=true
--disable <FEATURE>stringDisable a feature (repeatable). Equivalent to -c features.&lt;name&gt;=false
--remote <ADDR>stringConnect the TUI to a remote app server endpoint.
--remote-auth-token-env <ENV_VAR>stringName of the environment variable containing the bearer token to send to a remote app server websocket
--strict-configbooleanError out when config.toml contains fields that are not recognized by this version of wizard
-i, --image <FILE>...-ipathOptional image(s) to attach to the initial prompt
-m, --model <MODEL>-menumModel the agent should use
--ossbooleanUse open-source provider
--local-provider <OSS_PROVIDER>enumSpecify which local provider to use (lmstudio or ollama). If not specified with --oss, will use config default or show selection
-p, --profile <CONFIG_PROFILE>-ppathConfiguration profile from config.toml to specify default options
--profile-v2 <CONFIG_PROFILE_V2>pathLayer $DBT_WIZARD_HOME/<name>.config.toml on top of the base user config
-s, --sandbox <SANDBOX_MODE>-senumSelect the sandbox policy to use when executing model-generated shell commands
--dangerously-bypass-approvals-and-sandboxbooleanSkip all confirmation prompts and execute commands without sandboxing. EXTREMELY DANGEROUS. Intended solely for running in environments that are externally sandboxed
--dangerously-bypass-hook-trustbooleanRun enabled hooks without requiring persisted hook trust for this invocation. DANGEROUS. Intended only for automation that already vets hook sources
-C, --cd <DIR>-CpathTell the agent to use the specified directory as its working root
--add-dir <DIR>pathAdditional directories that should be writable alongside the primary workspace
-a, --ask-for-approval <APPROVAL_POLICY>-aenumConfigure when the model requires human approval before executing a command
--searchbooleanEnable live web search. When enabled, the native Responses web_search tool is available to the model (no per‑call approval)
--no-alt-screenbooleanDisable alternate screen mode
Loading table...

Commands

CommandAliasesDescription
execeRun Wizard non-interactively
reviewRun a code review non-interactively
loginManage login
logoutRemove stored authentication credentials
mcpManage external MCP servers for Wizard
pluginManage Wizard plugins
providersManage model providers
mcp-serverStart Wizard as an MCP server (stdio)
app-server[experimental] Run the app server or related tooling
remote-control[experimental] Manage the app-server daemon with remote control enabled
appLaunch the Wizard desktop app (opens the app installer if missing)
completionGenerate shell completion scripts
updateUpdate Wizard to the latest version
doctorDiagnose local Wizard installation, config, auth, and runtime health
sandboxRun commands within a Wizard-provided sandbox
debugDebugging tools
applyaApply the latest diff produced by Wizard agent as a git apply to your local working tree
resumeResume a previous interactive session (picker by default; use --last to continue the most recent)
forkFork a previous interactive session (picker by default; use --last to fork the most recent)
cloud[EXPERIMENTAL] Browse tasks from Wizard Cloud and apply changes locally
exec-server[EXPERIMENTAL] Run the standalone exec-server service
featuresInspect feature flags
Loading table...

exec

Run Wizard non-interactively

wizard exec [OPTIONS] <COMMAND> [ARGS]

Arguments:

ArgumentDescription
[PROMPT]Initial instructions for the agent. If not provided as an argument (or if - is used), instructions are read from stdin. If stdin is piped and a prompt is also provided, stdin is appended as a &lt;stdin&gt; block
Loading table...
FlagShortTypeDescription
-c, --config <key=value>-cstringOverride a configuration value that would otherwise be loaded from ~/.dbt/wizard/config.toml. Use a dotted path (foo.bar.baz) to override nested values. The value portion is parsed as TOML. If it fails to parse as TOML, the raw string is used as a literal.
--enable <FEATURE>stringEnable a feature (repeatable). Equivalent to -c features.&lt;name&gt;=true
--disable <FEATURE>stringDisable a feature (repeatable). Equivalent to -c features.&lt;name&gt;=false
--strict-configbooleanError out when config.toml contains fields that are not recognized by this version of wizard
-i, --image <FILE>...-ipathOptional image(s) to attach to the initial prompt
-m, --model <MODEL>-menumModel the agent should use
--ossbooleanUse open-source provider
--local-provider <OSS_PROVIDER>enumSpecify which local provider to use (lmstudio or ollama). If not specified with --oss, will use config default or show selection
-p, --profile <CONFIG_PROFILE>-ppathConfiguration profile from config.toml to specify default options
--profile-v2 <CONFIG_PROFILE_V2>pathLayer $DBT_WIZARD_HOME/<name>.config.toml on top of the base user config
-s, --sandbox <SANDBOX_MODE>-senumSelect the sandbox policy to use when executing model-generated shell commands
--dangerously-bypass-approvals-and-sandboxbooleanSkip all confirmation prompts and execute commands without sandboxing. EXTREMELY DANGEROUS. Intended solely for running in environments that are externally sandboxed
--dangerously-bypass-hook-trustbooleanRun enabled hooks without requiring persisted hook trust for this invocation. DANGEROUS. Intended only for automation that already vets hook sources
-C, --cd <DIR>-CpathTell the agent to use the specified directory as its working root
--add-dir <DIR>pathAdditional directories that should be writable alongside the primary workspace
--skip-git-repo-checkbooleanAllow running wizard outside a Git repository
--ephemeralbooleanRun without persisting session files to disk
--ignore-user-configbooleanDo not load $DBT_WIZARD_HOME/config.toml; auth still uses DBT_WIZARD_HOME
--ignore-rulesbooleanDo not load user or project execpolicy .rules files
--output-schema <FILE>pathPath to a JSON Schema file describing the model's final response shape
--color <COLOR>enumSpecifies color settings for use in the output
--jsonbooleanPrint events to stdout as JSONL
-o, --output-last-message <FILE>-opathSpecifies file where the last message from the agent should be written
Loading table...

review

Run a code review non-interactively

Arguments:

ArgumentDescription
[PROMPT]Custom review instructions. If - is used, read from stdin
Loading table...
FlagShortTypeDescription
-c, --config <key=value>-cstringOverride a configuration value that would otherwise be loaded from ~/.dbt/wizard/config.toml. Use a dotted path (foo.bar.baz) to override nested values. The value portion is parsed as TOML. If it fails to parse as TOML, the raw string is used as a literal.
--strict-configbooleanError out when config.toml contains fields that are not recognized by this version of Wizard
--enable <FEATURE>stringEnable a feature (repeatable). Equivalent to -c features.&lt;name&gt;=true
--uncommittedbooleanReview staged, unstaged, and untracked changes
--base <BRANCH>stringReview changes against the given base branch
--disable <FEATURE>stringDisable a feature (repeatable). Equivalent to -c features.&lt;name&gt;=false
--commit <SHA>stringReview the changes introduced by a commit
--title <TITLE>stringOptional commit title to display in the review summary
Loading table...

login

Manage login

FlagShortTypeDescription
-c, --config <key=value>-cstringOverride a configuration value that would otherwise be loaded from ~/.dbt/wizard/config.toml. Use a dotted path (foo.bar.baz) to override nested values. The value portion is parsed as TOML. If it fails to parse as TOML, the raw string is used as a literal.
--enable <FEATURE>stringEnable a feature (repeatable). Equivalent to -c features.&lt;name&gt;=true
--disable <FEATURE>stringDisable a feature (repeatable). Equivalent to -c features.&lt;name&gt;=false
Loading table...

logout

Remove stored authentication credentials

FlagShortTypeDescription
-c, --config <key=value>-cstringOverride a configuration value that would otherwise be loaded from ~/.dbt/wizard/config.toml. Use a dotted path (foo.bar.baz) to override nested values. The value portion is parsed as TOML. If it fails to parse as TOML, the raw string is used as a literal.
--enable <FEATURE>stringEnable a feature (repeatable). Equivalent to -c features.&lt;name&gt;=true
--disable <FEATURE>stringDisable a feature (repeatable). Equivalent to -c features.&lt;name&gt;=false
Loading table...

mcp

Manage external MCP servers for Wizard

FlagShortTypeDescription
-c, --config <key=value>-cstringOverride a configuration value that would otherwise be loaded from ~/.dbt/wizard/config.toml. Use a dotted path (foo.bar.baz) to override nested values. The value portion is parsed as TOML. If it fails to parse as TOML, the raw string is used as a literal.
--enable <FEATURE>stringEnable a feature (repeatable). Equivalent to -c features.&lt;name&gt;=true
--disable <FEATURE>stringDisable a feature (repeatable). Equivalent to -c features.&lt;name&gt;=false
Loading table...

plugin

Manage Wizard plugins

FlagShortTypeDescription
-c, --config <key=value>-cstringOverride a configuration value that would otherwise be loaded from ~/.dbt/wizard/config.toml. Use a dotted path (foo.bar.baz) to override nested values. The value portion is parsed as TOML. If it fails to parse as TOML, the raw string is used as a literal.
--enable <FEATURE>stringEnable a feature (repeatable). Equivalent to -c features.&lt;name&gt;=true
--disable <FEATURE>stringDisable a feature (repeatable). Equivalent to -c features.&lt;name&gt;=false
Loading table...

providers

Manage model providers

FlagShortTypeDescription
-c, --config <key=value>-cstringOverride a configuration value that would otherwise be loaded from ~/.dbt/wizard/config.toml. Use a dotted path (foo.bar.baz) to override nested values. The value portion is parsed as TOML. If it fails to parse as TOML, the raw string is used as a literal.
--enable <FEATURE>stringEnable a feature (repeatable). Equivalent to -c features.&lt;name&gt;=true
--disable <FEATURE>stringDisable a feature (repeatable). Equivalent to -c features.&lt;name&gt;=false
Loading table...

mcp-server

Start Wizard as an MCP server (stdio)

FlagShortTypeDescription
-c, --config <key=value>-cstringOverride a configuration value that would otherwise be loaded from ~/.dbt/wizard/config.toml. Use a dotted path (foo.bar.baz) to override nested values. The value portion is parsed as TOML. If it fails to parse as TOML, the raw string is used as a literal.
--strict-configbooleanError out when config.toml contains fields that are not recognized by this version of Wizard
--enable <FEATURE>stringEnable a feature (repeatable). Equivalent to -c features.&lt;name&gt;=true
--disable <FEATURE>stringDisable a feature (repeatable). Equivalent to -c features.&lt;name&gt;=false
Loading table...

app-server

[experimental] Run the app server or related tooling

FlagShortTypeDescription
-c, --config <key=value>-cstringOverride a configuration value that would otherwise be loaded from ~/.dbt/wizard/config.toml. Use a dotted path (foo.bar.baz) to override nested values. The value portion is parsed as TOML. If it fails to parse as TOML, the raw string is used as a literal.
--enable <FEATURE>stringEnable a feature (repeatable). Equivalent to -c features.&lt;name&gt;=true
--disable <FEATURE>stringDisable a feature (repeatable). Equivalent to -c features.&lt;name&gt;=false
--strict-configbooleanError out when config.toml contains fields that are not recognized by this version of Wizard
--listen <URL>stringTransport endpoint URL. Supported values: stdio:// (default), unix://, unix://PATH, ws://IP:PORT, off
--analytics-default-enabledbooleanControls whether analytics are enabled by default.
--ws-auth <MODE>enumWebsocket auth mode for non-loopback listeners
--ws-token-file <PATH>pathAbsolute path to the capability-token file
--ws-token-sha256 <HEX>stringHex-encoded SHA-256 digest of the capability token
--ws-shared-secret-file <PATH>pathAbsolute path to the shared secret file for signed JWT bearer tokens
--ws-issuer <ISSUER>stringExpected issuer for signed JWT bearer tokens
--ws-audience <AUDIENCE>stringExpected audience for signed JWT bearer tokens
--ws-max-clock-skew-seconds <SECONDS>stringMaximum clock skew when validating signed JWT bearer tokens
Loading table...

remote-control

[experimental] Manage the app-server daemon with remote control enabled

FlagShortTypeDescription
-c, --config <key=value>-cstringOverride a configuration value that would otherwise be loaded from ~/.dbt/wizard/config.toml. Use a dotted path (foo.bar.baz) to override nested values. The value portion is parsed as TOML. If it fails to parse as TOML, the raw string is used as a literal.
--jsonbooleanEmit machine-readable JSON
--enable <FEATURE>stringEnable a feature (repeatable). Equivalent to -c features.&lt;name&gt;=true
--disable <FEATURE>stringDisable a feature (repeatable). Equivalent to -c features.&lt;name&gt;=false
Loading table...

app

Launch the Wizard desktop app (opens the app installer if missing)

Arguments:

ArgumentDescription
[PATH]Workspace path to open in Wizard Desktop
Loading table...
FlagShortTypeDescription
-c, --config <key=value>-cstringOverride a configuration value that would otherwise be loaded from ~/.dbt/wizard/config.toml. Use a dotted path (foo.bar.baz) to override nested values. The value portion is parsed as TOML. If it fails to parse as TOML, the raw string is used as a literal.
--download-url <DOWNLOAD_URL_OVERRIDE>stringOverride the app installer download URL (advanced)
--enable <FEATURE>stringEnable a feature (repeatable). Equivalent to -c features.&lt;name&gt;=true
--disable <FEATURE>stringDisable a feature (repeatable). Equivalent to -c features.&lt;name&gt;=false
Loading table...

completion

Generate shell completion scripts

Arguments:

ArgumentDescription
[SHELL]Shell to generate completions for
Loading table...
FlagShortTypeDescription
-c, --config <key=value>-cstringOverride a configuration value that would otherwise be loaded from ~/.dbt/wizard/config.toml. Use a dotted path (foo.bar.baz) to override nested values. The value portion is parsed as TOML. If it fails to parse as TOML, the raw string is used as a literal.
--enable <FEATURE>stringEnable a feature (repeatable). Equivalent to -c features.&lt;name&gt;=true
--disable <FEATURE>stringDisable a feature (repeatable). Equivalent to -c features.&lt;name&gt;=false
Loading table...

update

Update Wizard to the latest version

FlagShortTypeDescription
-c, --config <key=value>-cstringOverride a configuration value that would otherwise be loaded from ~/.dbt/wizard/config.toml. Use a dotted path (foo.bar.baz) to override nested values. The value portion is parsed as TOML. If it fails to parse as TOML, the raw string is used as a literal.
--enable <FEATURE>stringEnable a feature (repeatable). Equivalent to -c features.&lt;name&gt;=true
--disable <FEATURE>stringDisable a feature (repeatable). Equivalent to -c features.&lt;name&gt;=false
Loading table...

doctor

Diagnose local Wizard installation, config, auth, and runtime health

FlagShortTypeDescription
-c, --config <key=value>-cstringOverride a configuration value that would otherwise be loaded from ~/.dbt/wizard/config.toml. Use a dotted path (foo.bar.baz) to override nested values. The value portion is parsed as TOML. If it fails to parse as TOML, the raw string is used as a literal.
--jsonbooleanEmit a redacted machine-readable report
--enable <FEATURE>stringEnable a feature (repeatable). Equivalent to -c features.&lt;name&gt;=true
--summarybooleanOnly show grouped check rows and the final count summary
--allbooleanExpand long lists in detailed human output
--disable <FEATURE>stringDisable a feature (repeatable). Equivalent to -c features.&lt;name&gt;=false
--no-colorbooleanDisable ANSI color in human output
--asciibooleanUse ASCII status labels and separators in human output
Loading table...

sandbox

Run commands within a Wizard-provided sandbox

FlagShortTypeDescription
-c, --config <key=value>-cstringOverride a configuration value that would otherwise be loaded from ~/.dbt/wizard/config.toml. Use a dotted path (foo.bar.baz) to override nested values. The value portion is parsed as TOML. If it fails to parse as TOML, the raw string is used as a literal.
--enable <FEATURE>stringEnable a feature (repeatable). Equivalent to -c features.&lt;name&gt;=true
--disable <FEATURE>stringDisable a feature (repeatable). Equivalent to -c features.&lt;name&gt;=false
Loading table...

debug

Debugging tools

FlagShortTypeDescription
-c, --config <key=value>-cstringOverride a configuration value that would otherwise be loaded from ~/.dbt/wizard/config.toml. Use a dotted path (foo.bar.baz) to override nested values. The value portion is parsed as TOML. If it fails to parse as TOML, the raw string is used as a literal.
--enable <FEATURE>stringEnable a feature (repeatable). Equivalent to -c features.&lt;name&gt;=true
--disable <FEATURE>stringDisable a feature (repeatable). Equivalent to -c features.&lt;name&gt;=false
Loading table...

apply

Apply the latest diff produced by Wizard agent as a git apply to your local working tree

Arguments:

ArgumentDescription
<TASK_ID>
Loading table...
FlagShortTypeDescription
-c, --config <key=value>-cstringOverride a configuration value that would otherwise be loaded from ~/.dbt/wizard/config.toml. Use a dotted path (foo.bar.baz) to override nested values. The value portion is parsed as TOML. If it fails to parse as TOML, the raw string is used as a literal.
--enable <FEATURE>stringEnable a feature (repeatable). Equivalent to -c features.&lt;name&gt;=true
--disable <FEATURE>stringDisable a feature (repeatable). Equivalent to -c features.&lt;name&gt;=false
Loading table...

resume

Resume a previous interactive session (picker by default; use --last to continue the most recent)

Arguments:

ArgumentDescription
[SESSION_ID]Conversation/session id (UUID) or thread name. UUIDs take precedence if it parses. If omitted, use --last to pick the most recent recorded session
[PROMPT]Optional user prompt to start the session
Loading table...
FlagShortTypeDescription
-c, --config <key=value>-cstringOverride a configuration value that would otherwise be loaded from ~/.dbt/wizard/config.toml. Use a dotted path (foo.bar.baz) to override nested values. The value portion is parsed as TOML. If it fails to parse as TOML, the raw string is used as a literal.
--lastbooleanContinue the most recent session without showing the picker
--allbooleanShow all sessions (disables cwd filtering and shows CWD column)
--enable <FEATURE>stringEnable a feature (repeatable). Equivalent to -c features.&lt;name&gt;=true
--disable <FEATURE>stringDisable a feature (repeatable). Equivalent to -c features.&lt;name&gt;=false
--include-non-interactivebooleanInclude non-interactive sessions in the resume picker and --last selection
--remote <ADDR>stringConnect the TUI to a remote app server endpoint.
--remote-auth-token-env <ENV_VAR>stringName of the environment variable containing the bearer token to send to a remote app server websocket
--strict-configbooleanError out when config.toml contains fields that are not recognized by this version of wizard
-i, --image <FILE>...-ipathOptional image(s) to attach to the initial prompt
-m, --model <MODEL>-menumModel the agent should use
--ossbooleanUse open-source provider
--local-provider <OSS_PROVIDER>enumSpecify which local provider to use (lmstudio or ollama). If not specified with --oss, will use config default or show selection
-p, --profile <CONFIG_PROFILE>-ppathConfiguration profile from config.toml to specify default options
--profile-v2 <CONFIG_PROFILE_V2>pathLayer $DBT_WIZARD_HOME/<name>.config.toml on top of the base user config
-s, --sandbox <SANDBOX_MODE>-senumSelect the sandbox policy to use when executing model-generated shell commands
--dangerously-bypass-approvals-and-sandboxbooleanSkip all confirmation prompts and execute commands without sandboxing. EXTREMELY DANGEROUS. Intended solely for running in environments that are externally sandboxed
--dangerously-bypass-hook-trustbooleanRun enabled hooks without requiring persisted hook trust for this invocation. DANGEROUS. Intended only for automation that already vets hook sources
-C, --cd <DIR>-CpathTell the agent to use the specified directory as its working root
--add-dir <DIR>pathAdditional directories that should be writable alongside the primary workspace
-a, --ask-for-approval <APPROVAL_POLICY>-aenumConfigure when the model requires human approval before executing a command
--searchbooleanEnable live web search. When enabled, the native Responses web_search tool is available to the model (no per‑call approval)
--no-alt-screenbooleanDisable alternate screen mode
Loading table...

fork

Fork a previous interactive session (picker by default; use --last to fork the most recent)

Arguments:

ArgumentDescription
[SESSION_ID]Conversation/session id (UUID). When provided, forks this session. If omitted, use --last to pick the most recent recorded session
[PROMPT]Optional user prompt to start the session
Loading table...
FlagShortTypeDescription
-c, --config <key=value>-cstringOverride a configuration value that would otherwise be loaded from ~/.dbt/wizard/config.toml. Use a dotted path (foo.bar.baz) to override nested values. The value portion is parsed as TOML. If it fails to parse as TOML, the raw string is used as a literal.
--lastbooleanFork the most recent session without showing the picker
--allbooleanShow all sessions (disables cwd filtering and shows CWD column)
--enable <FEATURE>stringEnable a feature (repeatable). Equivalent to -c features.&lt;name&gt;=true
--disable <FEATURE>stringDisable a feature (repeatable). Equivalent to -c features.&lt;name&gt;=false
--remote <ADDR>stringConnect the TUI to a remote app server endpoint.
--remote-auth-token-env <ENV_VAR>stringName of the environment variable containing the bearer token to send to a remote app server websocket
--strict-configbooleanError out when config.toml contains fields that are not recognized by this version of wizard
-i, --image <FILE>...-ipathOptional image(s) to attach to the initial prompt
-m, --model <MODEL>-menumModel the agent should use
--ossbooleanUse open-source provider
--local-provider <OSS_PROVIDER>enumSpecify which local provider to use (lmstudio or ollama). If not specified with --oss, will use config default or show selection
-p, --profile <CONFIG_PROFILE>-ppathConfiguration profile from config.toml to specify default options
--profile-v2 <CONFIG_PROFILE_V2>pathLayer $DBT_WIZARD_HOME/<name>.config.toml on top of the base user config
-s, --sandbox <SANDBOX_MODE>-senumSelect the sandbox policy to use when executing model-generated shell commands
--dangerously-bypass-approvals-and-sandboxbooleanSkip all confirmation prompts and execute commands without sandboxing. EXTREMELY DANGEROUS. Intended solely for running in environments that are externally sandboxed
--dangerously-bypass-hook-trustbooleanRun enabled hooks without requiring persisted hook trust for this invocation. DANGEROUS. Intended only for automation that already vets hook sources
-C, --cd <DIR>-CpathTell the agent to use the specified directory as its working root
--add-dir <DIR>pathAdditional directories that should be writable alongside the primary workspace
-a, --ask-for-approval <APPROVAL_POLICY>-aenumConfigure when the model requires human approval before executing a command
--searchbooleanEnable live web search. When enabled, the native Responses web_search tool is available to the model (no per‑call approval)
--no-alt-screenbooleanDisable alternate screen mode
Loading table...

cloud

[EXPERIMENTAL] Browse tasks from Wizard Cloud and apply changes locally

FlagShortTypeDescription
-c, --config <key=value>-cstringOverride a configuration value that would otherwise be loaded from ~/.dbt/wizard/config.toml. Use a dotted path (foo.bar.baz) to override nested values. The value portion is parsed as TOML. If it fails to parse as TOML, the raw string is used as a literal.
--enable <FEATURE>stringEnable a feature (repeatable). Equivalent to -c features.&lt;name&gt;=true
--disable <FEATURE>stringDisable a feature (repeatable). Equivalent to -c features.&lt;name&gt;=false
Loading table...

exec-server

[EXPERIMENTAL] Run the standalone exec-server service

FlagShortTypeDescription
-c, --config <key=value>-cstringOverride a configuration value that would otherwise be loaded from ~/.dbt/wizard/config.toml. Use a dotted path (foo.bar.baz) to override nested values. The value portion is parsed as TOML. If it fails to parse as TOML, the raw string is used as a literal.
--listen <URL>stringTransport endpoint URL. Supported values: ws://IP:PORT (default), stdio, stdio://
--enable <FEATURE>stringEnable a feature (repeatable). Equivalent to -c features.&lt;name&gt;=true
--remote <URL>stringRegister this exec-server as a remote environment using the given base URL
--disable <FEATURE>stringDisable a feature (repeatable). Equivalent to -c features.&lt;name&gt;=false
--environment-id <ID>stringEnvironment id to attach to when registering remotely
--name <NAME>stringHuman-readable environment name
--use-agent-identity-authbooleanUse Agent Identity auth from DBT_WIZARD_ACCESS_TOKEN for remote registration
Loading table...

features

Inspect feature flags

FlagShortTypeDescription
-c, --config <key=value>-cstringOverride a configuration value that would otherwise be loaded from ~/.dbt/wizard/config.toml. Use a dotted path (foo.bar.baz) to override nested values. The value portion is parsed as TOML. If it fails to parse as TOML, the raw string is used as a literal.
--enable <FEATURE>stringEnable a feature (repeatable). Equivalent to -c features.&lt;name&gt;=true
--disable <FEATURE>stringDisable a feature (repeatable). Equivalent to -c features.&lt;name&gt;=false
Loading table...

Was this page helpful?

This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.

0
Loading