Versions Compared

Key

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

...

Fork the indy-node Git repo:

  • Create a github account for yourself if you do not already have one. Go here if you need help.
  • go to https://github.com/hyperledger/indy-node
  • Click "fork" (upper right) and select your personal github account from the list.
  • From your fork click the green Code button.
  • Click 'HTTPS" and Copy the URL link shown in the field. Use this link in the next step.

Clone and build from

...

your fork of indy-node:

Copy and paste the following commands into a terminal command prompt:


Code Block
mkdir gitdir
cd gitdir
git clone https://github.com/hyperledger/indy-node <paste the path from the previous step> -b ubuntu-20.04-upgrade
cd indy-node 
docker build -t indy-node-dev -f .devcontainer/Dockerfile .devcontainer/ 
docker run --rm -it -v $(pwd):/node:z indy-node-dev
cd /node
pip install .[tests]
cd indy_common 
pytest . 
cd ../indy_node
pytest . 

...