-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathzellij.kdl
More file actions
93 lines (92 loc) · 2.54 KB
/
Copy pathzellij.kdl
File metadata and controls
93 lines (92 loc) · 2.54 KB
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
layout {
pane {
pane split_direction="vertical" {
pane {
name "shell"
command "bash"
args "-c" "${SHELL-bash}"
}
pane {
name "rocketh"
command "bash"
args "-c" "pnpm run --filter rocketh dev; cd packages/rocketh; ${SHELL-bash}"
}
pane {
name "rocketh-node"
command "bash"
args "-c" "pnpm run --filter @rocketh/node dev; cd packages/rocketh-node; ${SHELL-bash}"
}
pane {
name "rocketh-web"
command "bash"
args "-c" "pnpm run --filter @rocketh/web dev; cd packages/rocketh-web; ${SHELL-bash}"
}
pane {
name "rocketh-core"
command "bash"
args "-c" "pnpm run --filter @rocketh/core dev; cd packages/rocketh-core; ${SHELL-bash}"
}
}
pane split_direction="vertical" {
pane {
name "rocketh-read-execute"
command "bash"
args "-c" "pnpm run --filter @rocketh/read-execute dev; cd packages/rocketh-read-execute; ${SHELL-bash}"
}
pane {
name "rocketh-deploy"
command "bash"
args "-c" "pnpm run --filter @rocketh/deploy dev; cd packages/rocketh-deploy; ${SHELL-bash}"
}
pane {
name "rocketh-viem"
command "bash"
args "-c" "pnpm run --filter @rocketh/viem dev; cd packages/rocketh-viem; ${SHELL-bash}"
}
}
pane split_direction="vertical" {
pane {
name "rocketh-proxy"
command "bash"
args "-c" "pnpm run --filter @rocketh/proxy dev; cd packages/rocketh-proxy; ${SHELL-bash}"
}
pane {
name "rocketh-router"
command "bash"
args "-c" "pnpm run --filter @rocketh/router dev; cd packages/rocketh-router; ${SHELL-bash}"
}
pane {
name "rocketh-diamond"
command "bash"
args "-c" "pnpm run --filter @rocketh/diamond dev; cd packages/rocketh-diamond; ${SHELL-bash}"
}
}
pane split_direction="vertical" {
pane {
name "rocketh-signer"
command "bash"
args "-c" "pnpm run --filter @rocketh/signer dev; cd packages/rocketh-signer; ${SHELL-bash}"
}
pane {
name "rocketh-verifier"
command "bash"
args "-c" "pnpm run --filter @rocketh/verifier dev; cd packages/rocketh-verifier; ${SHELL-bash}"
}
pane {
name "rocketh-doc"
command "bash"
args "-c" "pnpm run --filter @rocketh/doc dev; cd packages/rocketh-doc; ${SHELL-bash}"
}
pane {
name "rocketh-export"
command "bash"
args "-c" "pnpm run --filter @rocketh/export dev; cd packages/rocketh-export; ${SHELL-bash}"
}
pane {
name "rocketh-test-utils"
command "bash"
args "-c" "pnpm run --filter @rocketh/test-utils dev; cd packages/rocketh-test-utils; ${SHELL-bash}"
}
}
}
}