зеркало из https://github.com/mozilla/treeherder.git
17 строки
607 B
Bash
Executable File
17 строки
607 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# Make non-zero exit codes & other errors fatal.
|
|
set -euo pipefail
|
|
|
|
export DATABASE_URL=${DATABASE_URL:-mysql://root@127.0.0.1:3306/treeherder}
|
|
# Only execute if we're using the Mysql container
|
|
if [ "${DATABASE_URL}" == "mysql://root@mysql/treeherder" ] ||
|
|
[ "${DATABASE_URL}" == "mysql://root@127.0.0.1:3306/treeherder" ]; then
|
|
# Initialize migrations and SETA
|
|
echo '-----> Running Django migrations and loading reference data'
|
|
./manage.py migrate --noinput
|
|
./manage.py load_initial_data
|
|
echo '-----> Initialize SETA'
|
|
./manage.py initialize_seta
|
|
fi
|
|
|
|
exec "$@" |