This is an automated email from the ASF dual-hosted git repository. machristie pushed a commit to branch develop in repository https://gitbox.apache.org/repos/asf/airavata.git
commit da6231272a182936715002b78dee8f069f789f54 Author: Marcus Christie <[email protected]> AuthorDate: Thu Jun 30 16:49:41 2022 -0400 AIRAVATA-3609 mark custom django apps editable in develop inv --- .../ansible/inventories/scigap/develop-js2/host_vars/amp/vars.yml | 3 ++- .../ansible/inventories/scigap/develop-js2/host_vars/geo/vars.yml | 5 +++-- .../inventories/scigap/develop-js2/host_vars/interactwel/vars.yml | 3 ++- .../inventories/scigap/develop-js2/host_vars/simccs/vars.yml | 7 ++++--- 4 files changed, 11 insertions(+), 7 deletions(-) diff --git a/dev-tools/ansible/inventories/scigap/develop-js2/host_vars/amp/vars.yml b/dev-tools/ansible/inventories/scigap/develop-js2/host_vars/amp/vars.yml index 876fd5025c..77123e60b1 100644 --- a/dev-tools/ansible/inventories/scigap/develop-js2/host_vars/amp/vars.yml +++ b/dev-tools/ansible/inventories/scigap/develop-js2/host_vars/amp/vars.yml @@ -30,7 +30,8 @@ vhost_ssl: true httpd_selinux_mode: "permissive" airavata_django_extra_dependencies: - - "git+ssh://[email protected]/SciGaP/trecx-django-app.git#egg=trecx-django-app" + - name: "git+ssh://[email protected]/SciGaP/trecx-django-app.git#egg=trecx-django-app" + editable: true # tus isn't setup yet tusd_vhost_servername: diff --git a/dev-tools/ansible/inventories/scigap/develop-js2/host_vars/geo/vars.yml b/dev-tools/ansible/inventories/scigap/develop-js2/host_vars/geo/vars.yml index fff2208f63..22df7267a0 100644 --- a/dev-tools/ansible/inventories/scigap/develop-js2/host_vars/geo/vars.yml +++ b/dev-tools/ansible/inventories/scigap/develop-js2/host_vars/geo/vars.yml @@ -21,8 +21,9 @@ --- airavata_django_extra_dependencies: - - "git+https://github.com/GeoGateway/geogateway-django-app.git@ui-update#egg=geogateway_django_app" -# - "git+https://github.com/GeoGateway/geogateway-django-app.git@master#egg=geogateway_django_app" + - name: "git+https://github.com/GeoGateway/geogateway-django-app.git@ui-update#egg=geogateway_django_app" +# - name: "git+https://github.com/GeoGateway/geogateway-django-app.git@master#egg=geogateway_django_app" + editable: true #Git hook is not set for this gateway diff --git a/dev-tools/ansible/inventories/scigap/develop-js2/host_vars/interactwel/vars.yml b/dev-tools/ansible/inventories/scigap/develop-js2/host_vars/interactwel/vars.yml index 5d19dd95bd..49c0381832 100644 --- a/dev-tools/ansible/inventories/scigap/develop-js2/host_vars/interactwel/vars.yml +++ b/dev-tools/ansible/inventories/scigap/develop-js2/host_vars/interactwel/vars.yml @@ -31,7 +31,8 @@ ssl_certificate_key_file: "/etc/letsencrypt/live/interactwel.org/privkey.pem" interactwel_django_app_branch: "api-integration" airavata_django_extra_dependencies: - - git+https://github.com/InterACTWEL/interactactwel-django-app.git@{{ interactwel_django_app_branch }}#egg=interactwel-django-app + - name: git+https://github.com/InterACTWEL/interactactwel-django-app.git@{{ interactwel_django_app_branch }}#egg=interactwel-django-app + editable: true django_extra_settings: LOGIN_REDIRECT_URL: "/interactwel/" diff --git a/dev-tools/ansible/inventories/scigap/develop-js2/host_vars/simccs/vars.yml b/dev-tools/ansible/inventories/scigap/develop-js2/host_vars/simccs/vars.yml index 54c007ca6c..db5f0e600a 100644 --- a/dev-tools/ansible/inventories/scigap/develop-js2/host_vars/simccs/vars.yml +++ b/dev-tools/ansible/inventories/scigap/develop-js2/host_vars/simccs/vars.yml @@ -26,9 +26,10 @@ airavata_django_extra_dependencies: # just cython, then a second with the other dependencies. Reason: pyjnius # requires that cython already be installed and they can't both be installed # at the same time. - - cython - - "git+https://github.com/SciGaP/simccs-maptool.git@{{ simccs_maptool_branch }}#egg=simccs-maptool" - - pyjnius + - name: cython + - name: "git+https://github.com/SciGaP/simccs-maptool.git@{{ simccs_maptool_branch }}#egg=simccs-maptool" + editable: true + - name: pyjnius # vhost_servername: "beta.simccs.org" # Temporary use a *.scigap.org domain name vhost_servername: "beta.simccs.scigap.org"
