-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.tmuxinator.yml
58 lines (53 loc) · 1.25 KB
/
.tmuxinator.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
49
50
51
52
53
54
55
56
57
58
name: ttc
root: <%= ENV["PWD"] %>
on_project_start:
- docker compose up -d ethereum-node postgres
- sleep 5
- make create-db
- make create-schema
windows:
- eth_pg_logs:
layout: even-vertical
panes:
- docker compose logs -f ethereum-node
- docker compose logs -f postgres
- servers:
layout: even-vertical
panes:
- >
DB_HOST=localhost
DB_PORT=5432
DB_USER=postgres
DB_PASSWORD=postgres
DB_NAME=ttc
NODE_HOST=localhost
NODE_PORT=8545
JSON_RPC_PORT=3000
RUST_LOG=debug
make run-prover-server
- >
DB_HOST=localhost
DB_PORT=5432
DB_USER=postgres
DB_PASSWORD=postgres
DB_NAME=ttc
NODE_HOST=localhost
NODE_PORT=8545
PROVER_HOST=localhost
PROVER_PORT=3000
JSON_RPC_PORT=3030
RUST_LOG=debug
make run-monitor-server
- system:
panes:
- htop
- shell:
panes:
- # empty shell
# Enable mouse mode
tmux_options: "-2"
# Set default shell options
tmux_command: "TERM=screen-256color tmux"
# Additional tmux configuration
pre_window: tmux set -g mouse on
tmux_attach: false