-
Notifications
You must be signed in to change notification settings - Fork 0
/
Taskfile.yml
46 lines (39 loc) · 1.24 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
version: '3'
##
# IMPORTANT: All tasks listed in this file should be executed from the root folder.
# - https://taskfile.dev/usage/#task-directory
#
tasks:
all_in_one:server:
cmds:
- cd ~/Projects/static_content/convenient_service/presentations/all_in_one && npm install && npm start -- --port=8301
all_in_one:server:open:
cmds:
- open -na "Google Chrome" --args --new-window --incognito "http://localhost:8301"
- task all_in_one:server
##
# 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/static_content"
principles_and_patterns:server:
cmds:
- cd ~/Projects/static_content/convenient_service/presentations/principles_and_patterns && npm install && npm start -- --port=8302
principles_and_patterns:server:open:
cmds:
- open -na "Google Chrome" --args --new-window --incognito "http://localhost:8302"
- task principles_and_patterns:server
##
# NOTE: Dev only command.
#
tmuxinator:start:
cmds:
- tmuxinator start convenient_service --project-config=.dev/.tmuxinator.yml