Skip to content
Permalink
master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time

EOA Publications

EOA Publications is a Django app for displaying publications of the Edition Open Access.

Quick start

  1. Install the lxml library:

    pip install lxml

  1. Add "publications" to your INSTALLED_APPS setting like this:

    INSTALLED_APPS = [
        ...
        'eoapublications',
    ]
    
  2. Include the publications URLconf in your project urls.py like this:

    path('eoapublications/', include('eoapublications.urls')),
    
  3. Run python manage.py migrate to create the publications models.

  4. Publications are imported through the import_publications script