-
Notifications
You must be signed in to change notification settings - Fork 317
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[RFC72] Update frontend for backend Spring Boot #4753
Changes from 6 commits
5206bb5
e74ac6f
74737a0
0350ca6
20c7883
f28d5f7
f5b8344
3005bbf
4c4495b
fa49ffd
2455138
88aeb95
1589ddc
91ec7ef
2c4a183
df613a3
260d9d1
a50f48a
7bba099
335a2fa
bf2e376
0d8daf3
3b777e6
8e41827
b5f3517
026d25d
97cd09d
afb4f01
76138e9
9173be9
e12ae71
6fead93
e8384ee
8d4eb70
9d2aae7
aa0bead
9565082
08df019
319690d
8803db2
009bdd7
c0be5c7
376b920
e8ea61e
ef8cabd
fbc06ef
fd2e5e9
7a04670
a52aa43
9acdf33
f73c4e4
758602a
4318bed
8dbbbb4
03cca8a
78d4f7e
f22e60b
bfbea36
da420a8
b248bd5
965e514
1ae1dd7
efd3799
84b1944
91607e7
fc0248b
951282d
ba3fec0
b57919a
6902f7a
1354246
4b70fc0
5067b54
86b5fd6
923a804
9a509b6
f88664a
f621439
39cd4aa
280f3e7
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,11 +2,11 @@ version: '3' | |
|
||
services: | ||
cbioportal: | ||
image: cbioportal/cbioportal:demo-rfc72 | ||
volumes: | ||
- $TEST_HOME/docker_compose/keycloak/samlKeystore.jks:/cbioportal-webapp/WEB-INF/classes/samlKeystore.jks:ro | ||
- $E2E_WORKSPACE/keycloak/idp-metadata.xml:/cbioportal-webapp/WEB-INF/classes/client-tailored-saml-idp-metadata.xml:ro | ||
command: /bin/sh -c "java -Xms2g -Xmx4g -Dauthenticate=saml -Dsession.service.url=http://cbioportal-session:5000/api/sessions/my_portal/ -jar webapp-runner.jar -AmaxHttpHeaderSize=16384 -AconnectionTimeout=20000 --enable-compression /cbioportal-webapp" | ||
|
||
- $TEST_HOME/docker_compose/keycloak/samlKeystore.jks:/cbioportal-webapp/samlKeystore.jks:ro | ||
- $E2E_WORKSPACE/keycloak/idp-metadata.xml:/cbioportal-webapp/client-tailored-saml-idp-metadata.xml:ro | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. WEB-INF folder disappeared in spring boot |
||
command: /bin/sh -c "rm -rf /cbioportal-webapp/lib/servlet-api-2.5.jar && java -Xms2g -Xmx4g -Ddat.method=none -Dmultithread.core_pool_size=1 -Dauthenticate=saml -Dspring.security.saml2.relyingparty.registration.cbio-idp.identityprovider.metadata-uri=classpath://saml2-idp-metadata.xml -Dsession.service.url=http://cbioportal-session:5000/api/sessions/my_portal/ -cp '/cbioportal-webapp:/cbioportal-webapp/lib/*' org.cbioportal.PortalApplication" | ||
keycloak: | ||
networks: | ||
- cbio-net | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
#export CBIOPORTAL_URL="http://localhost:8081" | ||
#export GENOME_NEXUS_URL="https://www.genomenexus.org" | ||
BACKEND=cbioportal:demo-rfc72 | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @inodb did this work? i tried this but coun't get it to work (in another PR). I mean, couldn't even get it to checkout the right branch There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. this did not work, but updating |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
need to remove later, this is a hack b/c it's no longer picking up the
env/custom.sh
BACKEND
parameter