Docs / Strand / getting-started/first-workflow

Deploy your first workflow

The fastest way to a working workflow is to start from a template rather than an empty canvas. Templates arrive pre-wired — nodes, connections, and sensible defaults — so you can see a complete pipeline before you change anything.

Start from a template#

  1. Open Flows and click Templates in the toolbar above the list.
  2. Pick a template that resembles what you want. Each one describes the trigger it
  3. expects and the services it touches.

  4. Give the workflow a name and create it. You land in the
  5. workflow editor with the template already laid out.

Templates are a starting point, not a contract — every node stays editable. See Templates for the full catalog.

Build from scratch instead#

If no template fits, create an empty workflow and add nodes yourself. The two pages worth reading first:

What a workflow is made of#

Every workflow is a graph of nodes. A minimal one looks like this:

code

[Trigger] → [Transform] → [HTTP Request]

Secrets never belong in node configuration. Put them in the Vault and reference them.

If you get stuck building it#

Nothing here can fail at runtime — a workflow does nothing until it runs — so problems at this stage are editor-shaped rather than error-shaped:

Errors that appear once a workflow actually executes are covered in When a run fails.

Next#

Once the workflow is saved, trigger a test run to watch it execute end to end.