bridgehead/ccp/modules/mtba-setup.sh

13 lines
398 B
Bash
Raw Normal View History

2023-09-04 16:43:40 +02:00
#!/bin/bash -e
2023-08-16 09:35:36 +02:00
function mtbaSetup() {
2023-10-11 08:09:49 +02:00
if [ -n "$ENABLE_MTBA" ];then
log INFO "MTBA setup detected -- will start MTBA Service and CBioPortal."
if [ ! -n "$IDMANAGER_UPLOAD_APIKEY" ]; then
log ERROR "Missing ID-Management Module! Fix this by setting up ID Management:"
fi
OVERRIDE+=" -f ./$PROJECT/modules/mtba-compose.yml"
add_private_oidc_redirect_url "/mtba/*"
2023-10-11 08:09:49 +02:00
fi
2023-02-10 13:11:50 +01:00
}