enx down

Tear down the project environment.


Usage

enx down

Description

Must be run inside a directory with an enx.toml file. Executes the steps defined in the [down] section — stopping services, cleaning up containers, etc.

Each step runs sequentially with a progress spinner.

Example

# enx.toml
[down]
steps = [
    "docker compose down",
]
$ enx down
  ▸ Tearing down "my-app"
    ✓ docker compose down
  ✓ Environment torn down!

See Also