Skip to content

Commit

Permalink
Merge pull request #10 from samply/develop
Browse files Browse the repository at this point in the history
Release Version 0.2.1
  • Loading branch information
torbrenner authored Jun 30, 2023
2 parents 5a94f0e + a8f504f commit b73e1c3
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 12 deletions.
10 changes: 4 additions & 6 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ services:
BEAM_URL: http://beam-proxy:8081
BEAM_PROXY_ID: ${LOCAL_BEAM_ID}
BEAM_BROKER_ID: ${BROKER_HOST}
BEAM_APP_ID: ${SITES_APP_ID}
BEAM_APP_ID: "focus"
depends_on:
- "beam-proxy"
labels:
Expand All @@ -73,8 +73,7 @@ services:
environment:
BROKER_URL: https://${BROKER_HOST}
PROXY_ID: ${LOCAL_BEAM_ID}.${BROKER_HOST}
APP_0_ID: ${SITES_APP_ID}
APP_0_KEY: ${LOCAL_BEAM_SECRET}
APP_focus_KEY: ${LOCAL_BEAM_SECRET}
PRIVKEY_FILE: /run/secrets/proxy.pem
ALL_PROXY: ${http_proxy}
secrets:
Expand All @@ -89,7 +88,7 @@ services:
BEAM_URL: http://beam-proxy-test:8081
BEAM_PROXY_ID: ${LOCAL_BEAM_ID}
BEAM_BROKER_ID: ${BROKER_HOST_TEST}
BEAM_APP_ID: ${SITES_APP_ID}
BEAM_APP_ID: "focus"
depends_on:
- "beam-proxy"
labels:
Expand All @@ -107,8 +106,7 @@ services:
environment:
BROKER_URL: https://${BROKER_HOST_TEST}
PROXY_ID: ${LOCAL_BEAM_ID}.${BROKER_HOST_TEST}
APP_0_ID: ${SITES_APP_ID}
APP_0_KEY: ${LOCAL_BEAM_SECRET_TEST}
APP_focus_KEY: ${LOCAL_BEAM_SECRET_TEST}
PRIVKEY_FILE: /run/secrets/proxy.pem
ROOTCERT_FILE: /run/secrets/root-test.crt.pem
ALL_PROXY: ${http_proxy}
Expand Down
1 change: 0 additions & 1 deletion example.env
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ GUI_HOST="data.dktk.dkfz.de|demo.lens.samply.de";
BROKER_HOST="broker.ccp-it.dktk.dkfz.de "
LOCAL_BEAM_ID="your-proxy-id"
LOCAL_BEAM_SECRET="insert-a-random-passphrase-here"
SITES_APP_ID="spot"

# Uncomment this for the development system
# COMPOSE_PROFILES=":develop"
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "lens-demo",
"version": "0.2.0",
"version": "0.2.1",
"license": "SEE LICENSE IN LICENSE.md",
"scripts": {
"ng": "ng",
Expand Down
1 change: 1 addition & 0 deletions src/app/main/main.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ export class MainComponent {
.set('frankfurt', 'Frankfurt')
.set('freiburg', 'Freiburg')
.set('hannover', 'Hannover')
.set('hamburg', 'Hamburg')
.set('mainz', 'Mainz')
.set('mannheim', 'Mannheim')
.set('muenchen-lmu', 'München(LMU)')
Expand Down
2 changes: 1 addition & 1 deletion src/environments/environment.prod.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ export const environment = {
new Beam(
'broker.ccp-it.dktk.dkfz.de',
new URL('https://backend.data.dktk.dkfz.de/prod/'),
['mannheim', 'freiburg', 'muenchen-tum']
['mannheim', 'freiburg', 'muenchen-tum', 'hamburg']
),
],
[
Expand Down
2 changes: 1 addition & 1 deletion src/environments/environment.ts
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ export const environment = {
new Beam(
'broker.ccp-it.dktk.dkfz.de',
new URL('https://backend.demo.lens.samply.de/prod/'),
['mannheim', 'freiburg', 'muenchen-tum']
['mannheim', 'freiburg', 'muenchen-tum', 'hamburg']
),
],
[
Expand Down

0 comments on commit b73e1c3

Please sign in to comment.