Skip to content

Commit

Permalink
readme++
Browse files Browse the repository at this point in the history
  • Loading branch information
esamattis committed Sep 7, 2024
1 parent a860f5b commit 2c120aa
Showing 1 changed file with 14 additions and 7 deletions.
21 changes: 14 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,15 +39,22 @@ In a project type `rt ` and hit the tab key
## Configuring

Set `RT_RUNNERS` environment variable to a comma separated list of runners without spaces you
want to use. List runners with `rt --runners`. By default all
runners are enabled. The order of the runners is the order they are tried when executing a task.
Useful if you have colliding task names in different runners.
want to use.

example
Available runners

```sh
export RT_RUNNERS=package.json,composer.json
```
- `package.json`
- `jakefile`
- `composer.json`
- `scripts:<dir>` - picks executables from `<dir>`. Ex. `scripts:bin`

example

```sh
export RT_RUNNERS=package.json,composer.json,scripts:./bin
```

List active runners with `rt --runners`

## Custom scripts

Expand Down

0 comments on commit 2c120aa

Please sign in to comment.