Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
cd ~

mkdir git-hltraining

cd git-hltraining

git clone https://github.com/hyperledger/aries-toolbox.git

git checkout hl-workshop

git clone https://github.com/hyperledger/aries-acapy-plugin-toolbox.git

cd aries-acapy-plugin-toolbox

git checkout hl-workshop


cd ~


Test starting the agents and toolbox

From one terminal, run the following:

Code Block
languagebash
cd ~/git-hltraining/aries-toolbox
npm install
npm run dev

After running these commands, you should see a window like the following pop up:

Image Added

This is the Aries Toolbox. We will now start the agents. From another terminal, run the following:

Code Block
languagebash
cd ~/git-hltraining/aries-acapy-plugin-toolbox/demo
docker-compose -f docker-compose.alice-bob.yml up --build


Note
titlePermissions

When running docker-compose (or other docker commands), you may need to prefix the command with `sudo` if it initially fails due to permissions.

The above command would then look like:


Code Block
languagebash
sudo docker-compose -f docker-compose.alice-bob.yml up --build


After running this command, you should see output similar to the following:

Image Added

If you've gotten to this point, you should be ready to run the agents and toolbox for the workshop!

Install Indy-CLI

Enter all of the following steps in to the Ubuntu command line:

...