/geoluminate-glossary

A glossary plugin for Geoluminate projects

Primary LanguagePythonMIT LicenseMIT

Django Glossary

Github Build Github Docs CodeCov GitHub GitHub last commit PyPI

A Django application for managing collections of scientific instruments

Documentation

The full documentation is at https://ssjenny90.github.io/geoluminate-glossary/

Quickstart

Install Django Glossary::

pip install geoluminate-glossary

Add it to your INSTALLED_APPS:

INSTALLED_APPS = (
    ...
    'glossary',
    ...
)

Add Django Glossary's URL patterns:

urlpatterns = [
    ...
    path('', include("glossary.urls")),
    ...
]

Features

  • TODO

Running Tests

Does the code actually work?

source <YOURVIRTUALENV>/bin/activate
(myenv) $ pip install tox
(myenv) $ tox

Development commands

pip install -r requirements_dev.txt
invoke -l

Credits