Skip to content

Latest commit

 

History

History
44 lines (28 loc) · 974 Bytes

README.rst

File metadata and controls

44 lines (28 loc) · 974 Bytes

acdh-django-filechecker

Django-App to store, edit, enrich and serialize the results of https://github.com/acdh-oeaw/repo-file-checker

Quickstart

Install acdh-django-filechecker:

pip install acdh-django-filechecker

Add it to your INSTALLED_APPS:

INSTALLED_APPS = (
    ...
    'filechecker',
    ...
)

Update your project's urls.py:

urlpatterns = [
    ...
    url(r'^filechecker-rdf/', include('filechecker.fc_arche_urls', namespace='filechecker-rdf')),
    url(r'^filechecker/', include('filechecker.urls', namespace='filechecker')),
    ...
  ]

import filechecker results

python manage.py import_fc_report.py [location to filelist.json]