A simple bank transactions system.
- Clone this repo.
- Create a virtualenv with Python 3.x.
- Activate virtualenv.
- Install dependencies.
- Setup instance with .env.
- Run tests.
git clone git@github.com:sleonardoaugusto/dj_bank.git
cd dj_bank
python -m venv .venv
source .venv/bin/activate
pip install -r requirements.txt
cp contrib/env-sample .env
pytest