-
Python v14
-
Docker + Docker Compose
-
uv (Python project manager)
-
psql CLI
Install with:brew install postgresql
git clone <repo>
cd bank-systemcp .env.example .envmake db-upmake db-migrateuv syncuv pip install -e .make apiInstall test dependencies
uv sync --group testRun tests
# All tests
pytest
# Specific test file
pytest tests/test_transactions.py
# Specific test
pytest tests/test_transactions.py::test__create_transfer__success