🚧 This project is currently under development. Please do not use this in production.
This project essentially comprises a FastAPI application built around the Hyperledger Aries stack, primarily tailored for Yoma-specific use cases.
The FastAPI app serves as a wrapper around common workflows, facilitating real-life applications of the stack. It acts as a form of middleware or interface for client applications (e.g., a mobile app) and the backend stack, using Aries CloudController and ACA-Py. The aim is to streamline a client's workflow by providing convenient API endpoints for common workflows, such as creating wallets, managing connections, credentials, proofs, and workflows.
Multiple API calls to the AriesCloudAgent can often be condensed into a single call via this API. For example, creating a wallet, which involves writing to the ledger, awaiting the result, accepting a TAA, creating a DID, and finally creating the wallet itself, can be done in a single call. Convenient, isn't it?
Note
For local development we migrated away from Docker Compose and now use Tilt and Kind.
The original ./manage
script and Docker Compose files are still available in
this repository, however they are now deprecated, no longer maintained, and
will be removed in the future.
Running the project is straightforward — it's all containerized. Simply execute
mise run tilt:up
from the project root. This command will spin up a Kind
cluster, build all the necessary docker images, and start the project.
You can then visit localhost:10350 to access the Tilt
UI.
To run the project, you will need Docker and docker-compose, as well as the ability to run a POSIX shell (e.g., sh or bash).
To install Docker, follow the instructions for your operating system in the official docs.
Next, follow the instructions for docker-compose in their docs.
If you experience any issues while running the project, feel free to reach out by opening an issue or contacting one of the contributors.
This project makes use of Mise to install and manage dev tooling.
There are several options for installing Mise:
# Homebrew
brew install mise
# Build from source (if you have Rust installed)
cargo install mise
# Arch Linux User Repository
yay -S mise-bin
# Debian/Ubuntu APT (amd64)
sudo apt-get update -y && sudo apt-get install -y gpg wget curl
sudo install -dm 755 /etc/apt/keyrings
wget -qO - https://mise.jdx.dev/gpg-key.pub \
| gpg --dearmor \
| sudo tee /etc/apt/keyrings/mise-archive-keyring.gpg 1> /dev/null
echo "deb [signed-by=/etc/apt/keyrings/mise-archive-keyring.gpg arch=amd64] https://mise.jdx.dev/deb stable main" \
| sudo tee /etc/apt/sources.list.d/mise.list
sudo apt-get update
sudo apt-get install -y mise
# Debian/Ubuntu APT (arm64)
sudo apt-get update -y && sudo apt-get install -y gpg wget curl
sudo install -dm 755 /etc/apt/keyrings
wget -qO - https://mise.jdx.dev/gpg-key.pub \
| gpg --dearmor \
| sudo tee /etc/apt/keyrings/mise-archive-keyring.gpg 1> /dev/null
echo "deb [signed-by=/etc/apt/keyrings/mise-archive-keyring.gpg arch=arm64] https://mise.jdx.dev/deb stable main" \
| sudo tee /etc/apt/sources.list.d/mise.list
sudo apt-get update
sudo apt-get install -y mise
We strongly recommend using your system package manager to install Mise.
Additional installation documentation can be found here
Once you have Mise installed, you will need to activate it in your shell.
# Bash
echo 'eval "$(mise activate bash)"' >> ~/.bashrc && source ~/.bashrc
# Zsh
echo 'eval "$(mise activate zsh)"' >> ~/.zshrc && source ~/.zshrc
# Fish
echo 'mise activate fish | source' >> ~/.config/fish/config.fish && source ~/.config/fish/config.fish
Once Mise is installed and activated, you can run mise trust
and then
mise install
to install all the required tools.
Other shells are supported as well. Please refer to the Mise documentation for more information.
Note
At the time of writing, Mise does not support Windows. WSL is recommended for Windows users.
If you are using WSL, you will need to take some additional steps for Kind to work.
You can find more detailed documentation in the
./docs
folder. The Quick Start
, Common Steps
and
Example Flows
will be most useful.
While this project was primarily developed to meet the needs of Yoma, it is an open-source project that can be used for other Hyperledger Aries projects as well. We welcome contributions from everyone. Feel free to engage in discussions, create a PR against a ticket, or open an issue yourself, following the GitHub guidelines.
The tests use pytest
. For convenience, use Mise to run them. First, ensure
the project is running locally by executing mise run tilt:up
. In another shell,
you can now run mise run tests
to run all tests or mise run tests:unit
to run
only the unit tests.
mise run tilt:up
Install the requirements:
mise run poetry:install:all
To run the tests you need to set up some environment variables to point Pytest at the correct endpoints.
cp .env.example .env
source .env
Then you can run the tests:
poetry run pytest .
Or only the unit tests:
poetry run pytest --ignore=app/tests/e2e
You can specify the log level of the pytest output by using the --log-cli-level
flag.
poetry run pytest . --log-cli-level=DEBUG
This will output all log messages with a log level of DEBUG
or higher.
To run specific tests, you can specify the path to the test file and the test method. For example:
poetry run pytest \
app/tests/e2e/test_verifier_oob.py::test_accept_proof_request_oob \
--log-cli-level=1
mise run tilt:up
In another terminal:
helmfile apply \
--environment local \
-f ./tilt/.charts/helmfiles/aries-capi-test.yaml
Please, refer to the CI/CD docs for more information.