Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions website/src/next/docs/reference/environment.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,13 +55,15 @@ files > defaults.

- **Type**: `integer`
- **Description**: Limit number of tasks to run concurrently
- **CLI equivalent**: [`-C, --concurrency`](./cli.md#-c---concurrency-number)
- **Config equivalent**: [`concurrency`](./config.md#concurrency)

### `TASK_FAILFAST`

- **Type**: `boolean` (`true`, `false`, `1`, `0`)
- **Default**: `false`
- **Description**: When running tasks in parallel, stop all tasks if one fails
- **CLI equivalent**: [`-F, --failfast`](./cli.md#-f---failfast)
- **Config equivalent**: [`failfast`](./config.md#failfast)

### `TASK_DRY`
Expand All @@ -70,18 +72,22 @@ files > defaults.
- **Default**: `false`
- **Description**: Compiles and prints tasks in the order that they would be
run, without executing them
- **CLI equivalent**: [`-n, --dry`](./cli.md#-n---dry)

### `TASK_ASSUME_YES`

- **Type**: `boolean` (`true`, `false`, `1`, `0`)
- **Default**: `false`
- **Description**: Assume "yes" as answer to all prompts
- **CLI equivalent**: [`-y, --yes`](./cli.md#-y---yes)

### `TASK_INTERACTIVE`

- **Type**: `boolean` (`true`, `false`, `1`, `0`)
- **Default**: `false`
- **Description**: Prompt for missing required variables
- **CLI equivalent**: [`--interactive`](./cli.md#--interactive)
- **Config equivalent**: [`interactive`](./config.md#interactive)

### `TASK_OUTPUT`

Expand Down