summaryrefslogtreecommitdiffstats
path: root/tools/run-tls.sh
blob: 894a9f767a36ff1f35d32a0b49f575a9087bc699 (plain)
1
2
3
4
5
6
7
8
#!/bin/sh

tmux \
	new-session  "go run cmd/daemon/main.go -tls -tls-cert cert.pem -tls-key key.pem; read" \; \
	split-window "sleep 0.5; go run cmd/client/main.go -tls -tls-insecure -u user1; read" \; \
	split-window "sleep 0.5; go run cmd/client/main.go -tls -tls-insecure -u user2; read" \; \
	split-window "sleep 0.5; go run cmd/client/main.go -tls -tls-insecure -u user3; read" \; \
	select-layout tiled;