-
Notifications
You must be signed in to change notification settings - Fork 0
/
Taskfile.yml
48 lines (43 loc) · 1.01 KB
/
Taskfile.yml
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
38
39
40
41
42
43
44
45
46
47
48
version: '3'
##
# IMPORTANT: All tasks listed in this file should be executed from the root folder.
# - https://taskfile.dev/usage/#task-directory
#
# NOTE: Examples of multiline strings in YAML.
# - https://yaml-multiline.info
#
# NOTE: Forwarding CLI arguments to commands ({{.CLI_ARGS}}).
# - https://taskfile.dev/usage/#forwarding-cli-arguments-to-commands
#
tasks:
##
# NOTE: Dev only command.
#
editor:open:
cmds:
- code .
##
# NOTE: Dev only command.
# NOTE: macOS specific command.
#
github:open:
cmds:
- open -na "Google Chrome" --args --new-window --incognito "https://github.com/marian13/convenient_service_docs"
##
#
#
start:
cmds:
- yarn start --port 8200
##
# NOTE: Dev only command.
#
tmuxinator:start:
cmds:
- tmuxinator start convenient_service_docs --project-config=.dev/.tmuxinator.yml
##
# NOTE: Dev only command.
#
tmuxinator:stop:
cmds:
- tmuxinator stop convenient_service_docs --project-config=.dev/.tmuxinator.yml