-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathmprocs.yaml
More file actions
27 lines (27 loc) · 807 Bytes
/
mprocs.yaml
File metadata and controls
27 lines (27 loc) · 807 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
procs:
watch:
shell: "pnpm install && pnpm build --filter='./packages/**' && pnpm turbo watch build --filter='./packages/**'"
client-web:
cwd: "apps/client-web"
shell: "pnpm dev"
autostart: false
test-app:
cwd: "examples/test-app"
shell: "pnpm dev"
autostart: false
docs:
cwd: "apps/docs"
shell: "pnpm dev"
autostart: false
keymap_procs: # keymap when process list is focused
<1>: { c: select-proc, index: 0 }
<2>: { c: select-proc, index: 1 }
<3>: { c: select-proc, index: 2 }
<4>: { c: select-proc, index: 3 }
<5>: { c: select-proc, index: 4 }
<6>: { c: select-proc, index: 5 }
<7>: { c: select-proc, index: 6 }
<8>: { c: select-proc, index: 7 }
<9>: { c: select-proc, index: 8 }
<0>: { c: select-proc, index: 9 }
server: 127.0.0.1:4060