mirror of https://github.com/nucypher/nucypher.git
18 lines
316 B
Bash
18 lines
316 B
Bash
|
#!/usr/bin/env bash
|
||
|
|
||
|
echo "Starting Up Heartbeat Demo Test..."
|
||
|
|
||
|
# Start Local Fleet
|
||
|
"${0%/*}"/../local_fleet/run_local_fleet.sh
|
||
|
|
||
|
# Move to examples directory
|
||
|
cd "${0%/*}"/../../examples/heartbeat_demo/
|
||
|
|
||
|
# Run Alicia
|
||
|
echo "Starting Alicia..."
|
||
|
python3 alicia.py
|
||
|
|
||
|
# Run Dr. Bob
|
||
|
echo "Starting Bob..."
|
||
|
python3 doctor.py
|