You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airavata.apache.org by di...@apache.org on 2020/10/14 05:27:44 UTC

[airavata] branch develop updated (b11d811 -> f9b9e20)

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

dimuthuupe pushed a change to branch develop
in repository https://gitbox.apache.org/repos/asf/airavata.git.


    from b11d811  Adding views directory to pga
     new 9e30529  Adding session directory to pga
     new f581b61  Enabling debug logs on for pga
     new 3794421  Skipping pga files in resource import
     new f9b9e20  Updating readme for windows ide-integration support

The 4 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 modules/ide-integration/README.md                             |  8 +++++++-
 modules/ide-integration/pom.xml                               | 11 +++++++++++
 .../resources/pga/airavata-php-gateway/app/config/app.php     |  2 +-
 .../app/{views => storage/sessions}/.local                    |  0
 4 files changed, 19 insertions(+), 2 deletions(-)
 copy modules/ide-integration/src/main/resources/pga/airavata-php-gateway/app/{views => storage/sessions}/.local (100%)


[airavata] 01/04: Adding session directory to pga

Posted by di...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

dimuthuupe pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/airavata.git

commit 9e30529d7545a1df0b9d94c2783d7d11c32d301d
Author: DImuthuUpe <di...@gmail.com>
AuthorDate: Wed Oct 14 05:17:28 2020 -0400

    Adding session directory to pga
---
 .../main/resources/pga/airavata-php-gateway/app/storage/sessions/.local   | 0
 1 file changed, 0 insertions(+), 0 deletions(-)

diff --git a/modules/ide-integration/src/main/resources/pga/airavata-php-gateway/app/storage/sessions/.local b/modules/ide-integration/src/main/resources/pga/airavata-php-gateway/app/storage/sessions/.local
new file mode 100644
index 0000000..e69de29


[airavata] 04/04: Updating readme for windows ide-integration support

Posted by di...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

dimuthuupe pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/airavata.git

commit f9b9e203fc268db468977680ab511f88a3eadc99
Author: DImuthuUpe <di...@gmail.com>
AuthorDate: Wed Oct 14 05:19:22 2020 -0400

    Updating readme for windows ide-integration support
---
 modules/ide-integration/README.md | 8 +++++++-
 1 file changed, 7 insertions(+), 1 deletion(-)

diff --git a/modules/ide-integration/README.md b/modules/ide-integration/README.md
index 4eead3a..e95287c 100644
--- a/modules/ide-integration/README.md
+++ b/modules/ide-integration/README.md
@@ -149,11 +149,17 @@ https://support.google.com/accounts/answer/6010255?hl=en
 
 * Run following command to get the ip address of host machine
 
-  This command is for docker containers deployed on Mac OSX  
+  For Mac OSX  
 
   ```
   docker-compose exec pga getent hosts docker.for.mac.host.internal | awk '{ print $1 }'
   ```
+  
+  For Windows
+  
+  ```
+  docker-compose exec pga getent hosts host.docker.internal
+  ```
 
 * Update the host entries of pga container with above ip address
 


[airavata] 03/04: Skipping pga files in resource import

Posted by di...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

dimuthuupe pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/airavata.git

commit 3794421f01fdb4ef5c0199fdfc6cfc15c25d2e7a
Author: DImuthuUpe <di...@gmail.com>
AuthorDate: Wed Oct 14 05:18:28 2020 -0400

    Skipping pga files in resource import
---
 modules/ide-integration/pom.xml | 11 +++++++++++
 1 file changed, 11 insertions(+)

diff --git a/modules/ide-integration/pom.xml b/modules/ide-integration/pom.xml
index a5e7190..0f3bec0 100644
--- a/modules/ide-integration/pom.xml
+++ b/modules/ide-integration/pom.xml
@@ -75,4 +75,15 @@
         </dependency>
     </dependencies>
 
+    <build>
+        <resources>
+            <resource>
+                <directory>src/main/resources</directory>
+                <excludes>
+                    <exclude>pga/**</exclude>
+                </excludes>
+            </resource>
+        </resources>
+    </build>
+
 </project>


[airavata] 02/04: Enabling debug logs on for pga

Posted by di...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

dimuthuupe pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/airavata.git

commit f581b61d44eb9a848b866456acd63f29e2bbfc8e
Author: DImuthuUpe <di...@gmail.com>
AuthorDate: Wed Oct 14 05:17:56 2020 -0400

    Enabling debug logs on for pga
---
 .../src/main/resources/pga/airavata-php-gateway/app/config/app.php      | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/modules/ide-integration/src/main/resources/pga/airavata-php-gateway/app/config/app.php b/modules/ide-integration/src/main/resources/pga/airavata-php-gateway/app/config/app.php
index f13aa23..14d95de 100755
--- a/modules/ide-integration/src/main/resources/pga/airavata-php-gateway/app/config/app.php
+++ b/modules/ide-integration/src/main/resources/pga/airavata-php-gateway/app/config/app.php
@@ -13,7 +13,7 @@ return array(
     |
     */
 
-    'debug' => false,
+    'debug' => true,
 
     /*
     |--------------------------------------------------------------------------