-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathTaskfile.yml
More file actions
37 lines (32 loc) · 818 Bytes
/
Copy pathTaskfile.yml
File metadata and controls
37 lines (32 loc) · 818 Bytes
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
37
# yaml-language-server: $schema=https://taskfile.dev/schema.json
version: "3"
includes:
tms:
taskfile: ./services/tms/Taskfile.yml
dir: ./services/tms
gtc:
taskfile: ./services/gtc/Taskfile.yml
dir: ./services/gtc
samsara:
taskfile: ./services/samsara-sim/Taskfile.yml
dir: ./services/samsara-sim
tasks:
default:
desc: Show available top-level tasks
cmds:
- task --list
help:
desc: Show available top-level tasks
cmds:
- task --list
list:
desc: Show namespaced service tasks
cmds:
- task --list-all
- echo ''
- echo 'Examples:'
- echo ' task tms:run'
- echo ' task tms:test'
- echo ' task gtc:run'
- echo ' task gtc:validate-config'
- echo ' task gtc:backfill projection=shipment-search'