You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airavata.apache.org by ma...@apache.org on 2020/10/06 19:33:30 UTC

[airavata-django-portal-sdk] branch master updated: updating getting started notes

This is an automated email from the ASF dual-hosted git repository.

machristie pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/airavata-django-portal-sdk.git


The following commit(s) were added to refs/heads/master by this push:
     new c387158  updating getting started notes
c387158 is described below

commit c387158f57a0bbb5c5708647975bb0d7b0c949a2
Author: Marcus Christie <ma...@iu.edu>
AuthorDate: Tue Oct 6 15:28:19 2020 -0400

    updating getting started notes
---
 README.md | 14 +++++++++++---
 1 file changed, 11 insertions(+), 3 deletions(-)

diff --git a/README.md b/README.md
index 219a613..fc77f06 100644
--- a/README.md
+++ b/README.md
@@ -12,16 +12,24 @@ more details.
 To integrate the SDK with an Airavata Django Portal custom app, add
 
 ```
-"airavata-django-portal-sdk @ git+https://github.com/apache/airavata-django-portal-sdk.git@master#egg=airavata-django-portal-sdk",
+"airavata-django-portal-sdk",
 ```
 
 to the `install_requires` list in your setup.py file. Then with your virtual
-environment activated, reinstall your Django app with
+environment activated, either install the SDK directly:
 
 ```
-pip install -e .
+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
 
 ```