mirror of https://github.com/nucypher/nucypher.git
22 lines
466 B
Bash
Executable File
22 lines
466 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
cd "${0%/*}"
|
|
echo "working in directory: $PWD"
|
|
|
|
set -e
|
|
echo "Starting Up Heartbeat Demo Test..."
|
|
|
|
# run some ursulas
|
|
docker-compose up -d
|
|
echo "Wait for Ursula learning to occur"
|
|
sleep 30
|
|
|
|
# run alicia and bob all in one running of docker since we lack persistent disks in circle
|
|
docker-compose run nucypher-circle-dev bash /code/scripts/circle/run_heartbeat_alicia_and_bob.sh
|
|
|
|
# spit out logs
|
|
./logOutput.sh
|
|
|
|
# tear it down
|
|
docker-compose stop
|