For the complete documentation index, see llms.txt. This page is also available as Markdown.

Workspace Configuration

A config.yaml (or config.yml) file lets you configure how the CLI discovers, filters, and runs your flows without needing to pass every option on the command line. It is recommended for any project with more than a handful of flows.

Auto-detection

Place your config.yaml file at the root of the directory you pass to dcd cloud and the CLI will pick it up automatically.

dcd cloud app.apk flows/        # flows/config.yaml is loaded automatically

Custom path

Use --config to load a config file from a non-standard location:

dcd cloud app.apk flows/ --config ci/workspace.yaml

Fields

flows

Glob patterns that select which flow files to run. Accepts a list of patterns using the NPM glob syntax.

flows:
  - ./**/*.yaml        # all YAML files recursively
  - ./smoke/*.yaml     # only files inside smoke/

Files named config.yaml / config.yml and paths containing .app path segments are always excluded regardless of the pattern.

If flows is omitted, all .yaml / .yml files in the directory (except config files) are included.

includeTags / excludeTags

Filter flows by their Maestro tags. Values here are merged with any tags set using the CLI flags.

executionOrder

Run a subset of flows sequentially (in order) before the remaining flows run in parallel.

  • flowsOrder — list of flow names to run in sequence. A name matches either the name: field inside the flow YAML or the filename without extension.

  • continueOnFailure — if true, subsequent flows in the sequence run even if an earlier one fails. Defaults to false.

If a flow name in flowsOrder doesn't match any discovered flow (e.g. after tag filtering), the CLI will emit a warning and lists the available names to help diagnose the mismatch.

notifications

Send email notifications when a run completes. See Notifications for full context.

platform

Per-platform settings. Currently supports disabling animations, which is equivalent to passing --disable-animations on the CLI but lets you control each platform independently. The CLI flag takes precedence if both are set.

Full example

Last updated