pip install unicef-securityAdd unicef_security to INSTALLED_APPS in settings:
INSTALLED_APPS = [
'admin_extra_urls',
'unicef_security',
]To configure the development environment:
$ python manage.py upgrade --allTo run checks on the code to ensure code is in compliance:
$ ruff check
$ ruff formatTesting is important and tests are located in tests/ directory and can be run with:
$ uv run pytest testCoverage report is viewable in build/coverage directory, and can be generated with:
$ pytest --cov=unicef_security --cov-report=html