mirror of
https://github.com/darkrenaissance/darkfi.git
synced 2026-01-09 22:57:59 -05:00
16 lines
500 B
Bash
Executable File
16 lines
500 B
Bash
Executable File
#!/bin/sh
|
|
set -e
|
|
|
|
# Start a tmux session with two consensus nodes and a non-consensus node, and
|
|
# a faucet that's able to mint tokens.
|
|
|
|
tmux new-session -d "LOG_TARGETS='!sled' ../../darkfid -v -c darkfid0.toml"
|
|
sleep 2
|
|
tmux split-window -v "LOG_TARGETS='!sled' ../../darkfid -v -c darkfid1.toml"
|
|
sleep 2
|
|
tmux split-window -h "LOG_TARGETS='!sled' ../../darkfid -v -c darkfid2.toml"
|
|
sleep 2
|
|
tmux select-pane -t 0
|
|
tmux split-window -h "LOG_TARGETS='!sled' ../../faucetd -v -c faucetd.toml"
|
|
tmux attach
|