Skip to content

Django-App providing some useful things to create browsing views

License

Notifications You must be signed in to change notification settings

acdh-oeaw/acdh-django-browsing

Repository files navigation

flake8 Lint Test PyPI version

acdh-django-browsing

Django-App providing some useful things to create browsing views

Features

see the example project in this repo to check out how to use the package and what it does

Quickstart

Install acdh-django-browsing:

pip install acdh-django-browsing

Add it to your INSTALLED_APPS:

INSTALLED_APPS = (
    ...
    'browsing',
    ...
)

Develop

install (dev-)dependencies

pip install -r requirements.txt

run migrations, load fixtures, and start dev server

python manage.py migrate
python manage.py loaddata data.json
python manage.py runserver

run tests

coverage run manage.py test -v 2

build the package

python -m build