Install the extension from PyPI:
pip install geokey-checklist
Or from cloned repository:
cd geokey-checklist
pip install -e .
Add the package to installed apps:
INSTALLED_APPS += (
...
'geokey_checklist',
)
Migrate the models into the database:
python manage.py migrate geokey_checklist
Copy static files:
python manage.py collectstatic
You're now ready to go!
Run tests:
python manage.py test geokey_checklist
Check code coverage:
coverage run --source=geokey_checklist manage.py test geokey_checklist
coverage report -m --omit=*/tests/*,*/migrations/*