Skip to content

Commit 639fdf6

Browse files
Merge pull request #22 from nuno-agostinho/shinyproxy-private-apps
Shinyproxy private apps
2 parents 81cc8f5 + 167a402 commit 639fdf6

2 files changed

Lines changed: 3 additions & 10 deletions

File tree

shinyproxy/application.yml.default

Lines changed: 2 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -28,15 +28,7 @@ proxy:
2828
container-volumes: [ "/srv/apps/psichomics/data:/root/Downloads" ]
2929
template-properties:
3030
startup-time: 20s
31-
- id: voyAGEr
32-
description: Analysis of age-related gene expression changes in human
33-
container-image: arthurschneider/voyager
34-
container-network: "${proxy.docker.container-network}"
35-
container-volumes: [ "/srv/apps/voyager/data:/home/app/data" ]
36-
- id: scStudio_LiMM
37-
container-image: genomeptimm/scstudio:1.3
38-
container-network: "${proxy.docker.container-network}"
39-
container-volumes: [ "/srv/apps/scStudio_LiMM/datasets:/home/app/datasets" ]
31+
listed: true
4032
- id: cTRAP
4133
description: Identifying candidate causal perturbations from differential gene expression data
4234
container-image: nunoagostinho/ctrap:1.12.0
@@ -45,6 +37,7 @@ proxy:
4537
container-volumes: [ "/srv/apps/cTRAP/sessions:/data" ]
4638
template-properties:
4739
startup-time: 15s
40+
listed: true
4841

4942
logging:
5043
file:

shinyproxy/templates/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
<div class="row">
2828
<!--<div class="col-lg-3 col-md-4 col-sm-6" th:each="app: ${apps}" th:if="${ #lists.contains({'splicingSenescenceDashboard', 'betAS'}, app.id) }" style="min-height: 140px;">-->
2929
<!-- Temporary size -->
30-
<div class="col-lg-4 col-md-4 col-sm-4" th:each="app: ${apps}" th:if="${ !#lists.contains({'splicingSenescenceDashboard', 'betAS'}, app.id) }" style="min-height: 140px;">
30+
<div class="col-lg-4 col-md-4 col-sm-4" th:each="app: ${apps}" th:if="${@thymeleaf.getTemplateProperty(app.id, 'listed', 'false') == 'true'}" style="min-height: 140px;">
3131
<h1><a th:href="@{/app/}+${app.id}" th:text="${app.displayName == null} ? ${app.id} : ${app.displayName}"></a></h1>
3232
<p th:text="${app.description}" ></p>
3333
</div>

0 commit comments

Comments
 (0)