-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.zellijrc
86 lines (86 loc) · 2.28 KB
/
.zellijrc
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
---
pane_frames: false
template:
direction: Horizontal
parts:
- direction: Vertical
borderless: true
split_size:
Fixed: 1
run:
plugin:
location: "zellij:tab-bar"
- direction: Vertical
body: true
- direction: Vertical
borderless: true
split_size:
Fixed: 2
run:
plugin:
location: "zellij:status-bar"
tabs:
- name: "Backend"
direction: Vertical
parts:
- direction: Horizontal
parts:
- direction: Vertical
split_size:
Percent: 33
run:
command:
cmd: "./.launch.expect"
args: ["cd apps/backend && yarn run dev"]
- direction: Vertical
split_size:
Percent: 33
run:
command:
cmd: "./.launch.expect"
args: ["cd apps/backend && yarn run worker:transactional-email"]
- direction: Vertical
split_size:
Percent: 33
run:
command:
cmd: "./.prefill-input.expect"
args: ["cd packages/db && npx prisma studio --port 5555"]
- direction: Horizontal
run:
command:
cmd: "./.launch.expect"
args: ["cd apps/backend && yarn run console"]
- name: "Frontend"
direction: Horizontal
parts:
- direction: Vertical
split_size:
Percent: 30
run:
command:
cmd: "./.launch.expect"
args: ["cd apps/frontend && yarn run dev"]
- direction: Vertical
split_size:
Percent: 30
run:
command:
cmd: "./.launch.expect"
args: ["cd apps/frontend && yarn run storybook"]
- direction: Vertical
split_size:
Percent: 40
- name: "Postgres"
run:
command:
cmd: "./.launch.expect"
# Needs a ~/.pgpass with a line : "127.0.0.1:5432:postgres:postgres:password"
# And a "pip3 install --user pgcli"
args: ["./postgres.sh && sleep 5s && pgcli --host 127.0.0.1 --user postgres"]
- name: "Redis"
run:
command:
cmd: "./.launch.expect"
args: ["./redis.sh && sleep 5s && redis-cli"]
- name: "Utils"