bridgehead/ccp/modules/mtba-setup.sh

12 lines
364 B
Bash
Raw Normal View History

2023-08-16 09:35:36 +02:00
#!/bin/bash
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:"
exit 1;
fi
OVERRIDE+=" -f ./$PROJECT/modules/mtba-compose.yml"
fi
2023-08-16 09:35:36 +02:00
}