Decodes transaction data providing a human-readable output.
cp .env.sample .env
docker compose build
docker compose up
Then go to http://localhost:8000 to see the service documentation.
Use a virtualenv if possible:
python -m venv venv
Then enter the virtualenv and install the dependencies:
source venv/bin/activate
pip install -r requirements/dev.txt
pre-commit install -f
cp .env.sample .env
This projects is using Alembic to manage database migrations. To create a new migration based on changes made to the model code, run the following command:
alembic revision --autogenerate -m "MIGRATION TITLE"