File: task.md

package info (click to toggle)
prometheus-fastapi-instrumentator 7.1.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 492 kB
  • sloc: python: 2,586; makefile: 5
file content (36 lines) | stat: -rw-r--r-- 766 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
# Task

Task is a task runner / build tool that aims to be simpler and easier to use
than, for example, GNU Make.

- [taskfile.dev](https://taskfile.dev)
- [github.com/go-task/task](https://github.com/go-task/task)

Having Task installed is not a hard-requirement for developing. It is mainly
used to collect common scripts / commands.

It can be installed Homebrew (other options are available as well).

```
brew install go-task
```

Task is configured via [`Taskfile.yaml`](../Taskfile.yaml).

When adding new tasks to the task file, try to keep individual tasks simple and
small. More complicated things should be put into individual scripts and then
just called from Task.

## Cheat Sheet

### List tasks

```
task --list
```

### Run task

```
task <task>
```