mirror of
https://github.com/samply/bridgehead.git
synced 2025-12-13 01:07:32 +01:00
fix postgresql password generation so that the password does not contain problematic characters that mess with the connection string
8 lines
274 B
Bash
8 lines
274 B
Bash
#!/bin/bash -e
|
|
|
|
if [ "$ENABLE_FHIR2SQL" == true ]; then
|
|
log INFO "Dashboard setup detected -- will start Dashboard backend and FHIR2SQL service."
|
|
OVERRIDE+=" -f ./$PROJECT/modules/fhir2sql-compose.yml"
|
|
DASHBOARD_DB_PASSWORD="$(generate_simple_password 'fhir2sql')"
|
|
fi
|