bin/ircd: make script directory

This commit is contained in:
ghassmo
2022-03-09 17:48:29 +04:00
parent 77a52ea0fe
commit eb6db85d4c
4 changed files with 7 additions and 1 deletions

View File

@@ -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.

View File

@@ -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