-
Notifications
You must be signed in to change notification settings - Fork 61
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
next: * config for public data including ethereum addresses of client and servers * authorization check for clients when they query a share * cleanup
- Loading branch information
Showing
12 changed files
with
270 additions
and
269 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
#!/bin/bash | ||
|
||
if [ -z $TMUX ]; then | ||
echo "tmux is not active, will start new session" | ||
TMUX_CMD="new-session" | ||
else | ||
echo "tmux is active, will launch into new window" | ||
TMUX_CMD="new-window" | ||
fi | ||
|
||
tmux $TMUX_CMD "docker-compose logs -f blockchain; sh" \; \ | ||
splitw -h -p 50 "docker-compose logs -f setup; sh" \; \ | ||
splitw -v -p 50 "docker-compose logs -f mpcnet; sh" \; \ | ||
selectp -t 0 \; \ | ||
splitw -v -p 50 "docker-compose logs -f client; sh" |
Oops, something went wrong.