mirror of
https://github.com/cookiecutter/cookiecutter-django.git
synced 2024-11-11 12:17:37 +03:00
b22045bcd4
Using system Python 3 distribution (3.7.3) in order to allow the use of Debian packages for numpy, scipy, etc. without the need of building them or installing build dependencies. Changed `#!/bin/sh` in shell scripts to `#!/bin/bash` to make `set -o pipefail` work.
46 lines
965 B
Bash
46 lines
965 B
Bash
#!/bin/bash
|
|
|
|
set -o errexit
|
|
set -o pipefail
|
|
set -o nounset
|
|
|
|
|
|
{% if cookiecutter.use_celery == 'y' %}
|
|
# N.B. If only .env files supported variable expansion...
|
|
export CELERY_BROKER_URL="${REDIS_URL}"
|
|
{% endif %}
|
|
|
|
if [ -z "${POSTGRES_USER}" ]; then
|
|
base_postgres_image_default_user='postgres'
|
|
export POSTGRES_USER="${base_postgres_image_default_user}"
|
|
fi
|
|
export DATABASE_URL="postgres://${POSTGRES_USER}:${POSTGRES_PASSWORD}@${POSTGRES_HOST}:${POSTGRES_PORT}/${POSTGRES_DB}"
|
|
|
|
postgres_ready() {
|
|
python << END
|
|
import sys
|
|
|
|
import psycopg2
|
|
|
|
try:
|
|
psycopg2.connect(
|
|
dbname="${POSTGRES_DB}",
|
|
user="${POSTGRES_USER}",
|
|
password="${POSTGRES_PASSWORD}",
|
|
host="${POSTGRES_HOST}",
|
|
port="${POSTGRES_PORT}",
|
|
)
|
|
except psycopg2.OperationalError:
|
|
sys.exit(-1)
|
|
sys.exit(0)
|
|
|
|
END
|
|
}
|
|
until postgres_ready; do
|
|
>&2 echo 'Waiting for PostgreSQL to become available...'
|
|
sleep 1
|
|
done
|
|
>&2 echo 'PostgreSQL is available'
|
|
|
|
exec "$@"
|