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

Showing with CLI command

Steps to Show What Workflow Is Running

  1. Run the workflow show command in the root of the app directory

stoobly-agent scaffold workflow show

The output will show the workflow namespace, status, runtime, and when it was started:

═════════════════════════════════════════════
  Workflow: mock
═════════════════════════════════════════════
  Namespace   mock
  Status      running
  Runtime     docker
  Started     2025-11-14 10:32:17
  1. To also see the scaffold services running under the workflow, use the --verbose flag:

stoobly-agent scaffold workflow show --verbose
═════════════════════════════════════════════
  Workflow: mock
═════════════════════════════════════════════
  Namespace   mock
  Status      running
  Runtime     docker
  Started     2025-11-14 10:32:17

Services
─────────────────────────────────────────────
name                      scheme    hostname                      port    priority  local    detached    upstream_scheme    upstream_hostname               upstream_port
my-custom-service         http      my-custom-service.com           80           5  False    False       http               my-custom-service.com                         80
my-api-service            https     my-api-service.com             443           5  False    False       https              my-api-service.com                           443
my-third-party-service    https     www.my-third-party-service.com 443           5  False    False       https              www.my-third-party-service.com               443

Options

To see what options are available:

Last updated