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.
- Host: GitHub
- URL: https://github.com/thelabbingproject/django_analyses
- Owner: TheLabbingProject
- License: apache-2.0
- Created: 2019-12-03T13:15:29.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2024-03-20T15:33:20.000Z (over 1 year ago)
- Last Synced: 2025-03-28T05:11:18.299Z (6 months ago)
- Topics: django-app, research-data-management, workflow-engine
- Language: Python
- Homepage: https://django-analyses.readthedocs.io/en/latest/
- Size: 651 KB
- Stars: 1
- Watchers: 1
- Forks: 3
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
[](https://pypi.python.org/pypi/django-analyses/)
[](https://pypi.python.org/pypi/django-analyses/)
[](https://app.circleci.com/pipelines/github/TheLabbingProject/django-analyses)
[](http://django-analyses.readthedocs.io/?badge=latest)
[](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/.