@@ -60,6 +60,6 @@ And send messages to yourself.
### Running a Fullnode
-See the script `run_node.sh` for an example of how to deploy a full node which
+See the script `script/run_node.sh` for an example of how to deploy a full node which
does seed session synchronization, and accepts both inbound and outbound
connections.
@@ -0,0 +1,6 @@
+#!/bin/sh
+
+tmux new-session -d 'LOG_TARGETS=net ../../target/release/ircd -vv --accept 127.0.0.1:9999 --irc 127.0.0.1:6688'
+tmux split-window -v 'LOG_TARGETS=net ../../target/release/ircd -vv --accept 127.0.0.1:11004 --external 127.0.0.1:11004 --seeds 127.0.0.1:9999 --irc 127.0.0.1:6667'
+tmux split-window -h 'LOG_TARGETS=net ../../target/release/ircd -vv --slots 5 --seeds 127.0.0.1:9999 --irc 127.0.0.1:6668'
+tmux attach