An open API service indexing awesome lists of open source software.

https://github.com/thelabbingproject/django_analyses

A reusable Django app to manage analyses.
https://github.com/thelabbingproject/django_analyses

django-app research-data-management workflow-engine

Last synced: 6 months ago
JSON representation

A reusable Django app to manage analyses.

Awesome Lists containing this project

README

          

[![PyPI version](https://img.shields.io/pypi/v/django-analyses.svg)](https://pypi.python.org/pypi/django-analyses/)
[![PyPI status](https://img.shields.io/pypi/status/django-analyses.svg)](https://pypi.python.org/pypi/django-analyses/)
[![TheLabbingProject](https://circleci.com/gh/TheLabbingProject/django_analyses.svg?style=shield)](https://app.circleci.com/pipelines/github/TheLabbingProject/django-analyses)
[![Documentation Status](https://readthedocs.org/projects/django-analyses/badge/?version=latest)](http://django-analyses.readthedocs.io/?badge=latest)
[![codecov.io](https://codecov.io/gh/TheLabbingProject/django_analyses/coverage.svg?branch=master)](https://codecov.io/github/TheLabbingProject/django_analyses?branch=master)

# django-analyses

A reusable Django app to manage analyses.

## Quick start

1. Add "django_analyses" to your INSTALLED_APPS setting:


INSTALLED_APPS = [
...
'django_analyses',
]

2. Include the `analyses` URLconf in your prject urls.py:


path("api/", include("django_analyses.urls", namespace="analyses")),

3. Run `python manage.py migrate` to create the analyses models.

4. Start the development server and visit http://127.0.0.1:8000/admin/.

5. Visit http://127.0.0.1:8000/api/analyses/.