AIRAVATA-3362 Fixes to relative path of dir in experiment dir
1 file changed
tree: b3cfd69b0e6ec94f5e862176a5d48e609d59b7d8
  1. airavata_django_portal_sdk/
  2. docs/
  3. tests/
  4. .gitignore
  5. mkdocs.yml
  6. README.md
  7. requirements-dev.txt
  8. requirements.txt
  9. runtests.py
  10. setup.py
README.md

Airavata Django Portal SDK

The Airavata Django Portal SDK provides libraries that assist in developing custom Django app extensions to the Airavata Django Portal.

See the documentation at https://airavata-django-portal-sdk.readthedocs.io/ for more details.

Getting Started

To integrate the SDK with an Airavata Django Portal custom app, add

"airavata-django-portal-sdk",

to the install_requires list in your setup.py file. Then with your virtual environment activated, either install the SDK directly:

pip install -e "git+https://github.com/apache/airavata-django-portal-sdk.git@master#egg=airavata-django-portal-sdk"

Or add the dependency to your requirements.txt file:

-e "git+https://github.com/apache/airavata-django-portal-sdk.git@master#egg=airavata-django-portal-sdk"

then run pip install -r requirements.txt

Migrations

django-admin makemigrations --settings=tests.test_settings airavata_django_portal_sdk

Documentation

To generate the documentation, create a virtual environment and then:

pip install -r requirements-dev.txt
mkdocs serve