You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/features/cli/index.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -51,6 +51,6 @@ gogo -w test
51
51
gogo test -- -v -run TestFoo
52
52
```
53
53
54
-
## Taskfile Discovery
54
+
## Task File Discovery
55
55
56
-
gogo walks up the directory tree to find the topmost directory containing a `gogo.yaml` file. This means you can run gogo from any subdirectory and it will find the root taskfile.
56
+
gogo walks up the directory tree to find the topmost directory containing a `gogo.yaml` file. This means you can run gogo from any subdirectory and it will find the root task file.
Copy file name to clipboardExpand all lines: docs/features/dotenv/index.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -55,10 +55,10 @@ DB_PASSWORD='s3cret'
55
55
- Per-task dotenv values override global dotenv values
56
56
- Existing environment variables are never overridden
57
57
- Missing files are silently skipped
58
-
- Global dotenv paths are relative to the taskfile directory
58
+
- Global dotenv paths are relative to the task file directory
59
59
- Per-task dotenv paths are relative to the task's working directory
60
60
- `~/`is expanded to the home directory
61
61
62
62
## With Includes
63
63
64
-
When using [includes](../includes/), each included taskfile can define its own `dotenv` files. Files are deduplicated by absolute path — the same `.env` file is never loaded twice.
64
+
When using [includes](../includes/), each included task file can define its own `dotenv` files. Files are deduplicated by absolute path — the same `.env` file is never loaded twice.
Copy file name to clipboardExpand all lines: docs/features/includes/index.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,7 +4,7 @@ title: Includes
4
4
5
5
# Includes
6
6
7
-
Split your taskfile into multiple files across subdirectories. Each included directory must contain its own `gogo.yaml`.
7
+
Split your task file into multiple files across subdirectories. Each included directory must contain its own `gogo.yaml`.
8
8
9
9
## Basic Setup
10
10
@@ -54,4 +54,4 @@ gogo build # resolves to backend:build
54
54
55
55
## Dotenv Deduplication
56
56
57
-
Each included taskfile can define its own `dotenv` files. If multiple includes reference the same `.env` file (by absolute path), it's loaded only once.
57
+
Each included task file can define its own `dotenv` files. If multiple includes reference the same `.env` file (by absolute path), it's loaded only once.
0 commit comments