geokey-checklist

Create checklists for GeoKey


Keywords
django, geokey, geokey-extension
License
MIT
Install
pip install geokey-checklist

Documentation

PyPI Package Travis CI Build Status Coveralls Test Coverage

geokey-checklist

Install

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!

Test

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/*