Dev Setup

The preferred method of setting up the development environment is to use the devcontainers. All configuration files for VSCode and Gitpod are already placed in this repository. If you are new to the concept of devcontainers in combination with VSCode here is a good article about it.

Simply clone this repository and VSCode will most likely ask you to open it in the devcontainer, if you have the correct extension(”ms-vscode-remote.remote-containers”) installed. If VSCode didn’t ask to open it, open the command palette and use the Remote-Containers: Rebuild and Reopen in Container command.

If you want to use Gitpod simply use this link or if you want to work with your fork, prefix the entire URL of your branch with gitpod.io/# so that it looks like https://gitpod.io/#https://github.com/hyperledger/indy-node/tree/main.

Note: Be aware that the config files for Gitpod and VSCode are currently only used in the main branch!

There are also scripts that can help in setting up an environment and project for developers. The scripts are in dev-setup folder. Note: Beware that these may be outdated and more cumbersome to set up.

Note: As of now, we provide scripts for Ubuntu only. It’s not guaranteed that the code is working on Windows.

  • One needs Python 3.5 to work with the code

  • We recommend using Python virtual environment for development

  • We use pytest for unit and integration testing

  • There are some dependencies that must be installed before being able to run the code

Quick Setup on Ubuntu 16.04:

This is a Quick Setup for development on a clean Ubuntu 16.04 machine. You can also have a look at the scripts mentioned below to follow them and perform setup manually.

  1. Get scripts from dev-setup-ubuntu

  2. Run setup-dev-python.sh to setup Python3.5, pip and virtualenv

  3. Run source ~/.bashrc to apply virtual environment wrapper installation

  4. Run setup-dev-depend-ubuntu16.sh to setup dependencies (libindy, ursa, libsodium)

  5. Fork indy-plenum and indy-node

  6. Go to the destination folder for the project

  7. Run init-dev-project.sh <github-name> <new-virtualenv-name> to clone indy-plenum and indy-node projects and create a virtualenv to work in

  8. Activate new virtualenv workon <new-virtualenv-name>

  9. [Optionally] Install Pycharm

  10. [Optionally] Open and configure projects in Pycharm:

    • Open both indy-plenum and indy-node in one window

    • Go to File -> Settings

    • Configure Project Interpreter to use just created virtualenv

      • Go to Project: <name> -> Project Interpreter

      • You’ll see indy-plenum and indy-node projects on the right side tab. For each of them:

        • Click on the project just beside “Project Interpreter” drop down, you’ll see one setting icon, click on it.

        • Select “Add Local”

        • Select existing virtualenv path as below: /bin/python3.5 For example: /home/user_name/.virtualenvs/new-virtualenv-name>/bin/python3.5

    • Configure Project Dependency

      • Go to Project: <name> -> Project Dependencies

      • Mark each project to be dependent on another one

    • Configure pytest

      • Go to Configure Tools -> Python Integrated tools

      • You’ll see indy-plenum and indy-node projects on the right side tab. For each of them:

        • Select Py.test from the ‘Default test runner’

    • Press Apply

Detailed Setup

Setup Python

One needs Python 3.5 to work with the code. You can use dev-setup/ubuntu/setup_dev_python.sh script for quick installation of Python 3.5, pip and virtual environment on Ubuntu, or follow the detailed instructions below.

Ubuntu

  1. Run sudo add-apt-repository ppa:deadsnakes/ppa

  2. Run sudo apt-get update

  3. On Ubuntu 14, run sudo apt-get install python3.5 (python3.5 is pre-installed on most Ubuntu 16 systems; if not, do it there as well.)

CentOS/Redhat

Run sudo yum install python3.5

Mac

  1. Go to python.org and from the “Downloads” menu, download the Python 3.5.0 package (python-3.5.0-macosx10.6.pkg) or later.

  2. Open the downloaded file to install it.

  3. If you are a homebrew fan, you can install it using this brew command: brew install python3

  4. To install homebrew package manager, see: brew.sh

Windows

Download the latest build (pywin32-220.win-amd64-py3.5.exe is the latest build as of this writing) from here and run the downloaded executable.

Setup Libsodium

Indy also depends on libsodium, an awesome crypto library. These need to be installed separately.

Ubuntu

  1. We need to install libsodium with the package manager. This typically requires a package repo that’s not active by default. Inspect /etc/apt/sources.list file with your favorite editor (using sudo). On ubuntu 16, you are looking for a line that says deb http://us.archive.ubuntu.com/ubuntu xenial main universe. On ubuntu 14, look for or add: deb http://ppa.launchpad.net/chris-lea/libsodium/ubuntu trusty main and deb-src http://ppa.launchpad.net/chris-lea/libsodium/ubuntu trusty main.

  2. Run sudo apt-get update. On ubuntu 14, if you get a GPG error about public key not available, run this command and then, after, retry apt-get update: sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys B9316A7BC7917B12

  3. Install libsodium; the version depends on your distro version. On Ubuntu 14, run sudo apt-get install libsodium13; on Ubuntu 16, run sudo apt-get install libsodium18

CentOS/Redhat

Run sudo yum install libsodium-devel

Mac

Once you have homebrew installed, run brew install libsodium to install libsodium.

Windows

  1. Go to https://download.libsodium.org/libsodium/releases/ and download the latest libsodium package (libsodium-1.0.8-mingw.tar.gz is the latest version as of this writing).

  2. When you extract the contents of the downloaded tar file, you will see 2 folders with the names libsodium-win32 and libsodium-win64.

  3. As the name suggests, use the libsodium-win32 if you are using 32-bit machine or libsodium-win64 if you are using a 64-bit operating system.

  4. Copy the libsodium-x.dll from libsodium-win32\bin or libsodium-win64\bin to C:\Windows\System or System32 and rename it to libsodium.dll.

Setup RocksDB

Indy depends on RocksDB, an embeddable persistent key-value store for fast storage.

Currently Indy requires RocksDB version 5.8.8 or higher. There is a deb package of RocksDB-5.8.8 and related stuff that can be used on Ubuntu 16.04:

# Start of repository configuration steps
sudo apt-get update
sudo apt-get install apt-transport-https ca-certificates
apt-key adv --keyserver keyserver.ubuntu.com --recv-keys CE7709D068DB5E88
sudo add-apt-repository "deb https://repo.sovrin.org/deb xenial master"
# End of repository configuration steps
sudo apt-get update
sudo apt-get install libbz2-dev \
    zlib1g-dev \
    liblz4-dev \
    libsnappy-dev \
    rocksdb=5.8.8

See RocksDB on how it can be installed on other platforms.

Setup Libindy and Ursa

Indy needs Libindy as a test dependency. It also relies on ursa, a library that supplies cryptographic signatures.

There are deb packages of libindy and ursa that can be used on Ubuntu:

sudo add-apt-repository "deb https://repo.sovrin.org/sdk/deb xenial stable"
sudo apt-get update
sudo apt-get install -y libindy ursa

See Libindy on how libindy can be installed on other platforms. See Ursa build environment on how Ursa can be installed and built for other platforms.

Installing code and running tests

Activate the virtual environment.

Navigate to the root directory of the source (for each project) and install required packages by

pip install -e .[tests]

If you are working with both indy-plenum and indy-node, then please make sure that both projects are installed with -e option, and not from pypi (have a look at the sequence at init-dev-project.sh).

Go to the folder with tests (either indy-plenum, indy-node/indy_node, indy-node/indy_client or indy-node/indy_common) and run tests

pytest .