Development

To set up the development environment:

  1. Clone the repository

  2. Create a virtual environment and activate it

  3. Install development dependencies:

    pip install -e ".[dev]"
    

Run tests:


pip install -e “.[test]”

python -m pytest tests

OR

pytest tests/

Making migrations

python testapp/manage.py makemigrations

Migrate

python testapp/manage.py migrate