Development
To set up the development environment:
Clone the repository
Create a virtual environment and activate it
Install development dependencies:
pip install -e ".[dev]"
Run tests:
pip install -e “.[test]”
python -m pytest testsOR
pytest tests/
Making migrations
python testapp/manage.py makemigrations
Migrate
python testapp/manage.py migrate