This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/sh | |
| set -eu | |
| echo "ScadFlow: preparing the database login used by the app..." | |
| if [ -z "${SCADFLOW_DB_PASSWORD:-}" ]; then | |
| echo "ScadFlow: missing SCADFLOW_DB_PASSWORD." >&2 | |
| echo "ScadFlow: run setup-docker.sh (or setup-docker.ps1) first, then start again." >&2 | |
| exit 1 | |
| fi |
OlderNewer