A Django application for managing collections of scientific instruments
The full documentation is at https://ssjenny90.github.io/django-laboratory/
Install Django Laboratory::
pip install django-laboratory
Add it to your INSTALLED_APPS
:
INSTALLED_APPS = (
...
'laboratory',
...
)
Add Django Laboratory's URL patterns:
urlpatterns = [
...
path('', include("laboratory.urls")),
...
]
- TODO
Does the code actually work?
source <YOURVIRTUALENV>/bin/activate
(myenv) $ pip install tox
(myenv) $ tox
pip install -r requirements_dev.txt
invoke -l