mirror of
https://github.com/cookiecutter/cookiecutter-django.git
synced 2024-11-11 12:17:37 +03:00
0164c330b3
* Move to the python:alpine docker image - Switch the base images for local and production to alpine - Install extra dependencies for psycopg2, Pillow and cffi - Change shebang for shell scripts to use sh instead of bash * Move to the python:alpine docker image - Migrate group and user creation to Alpine syntax * Move to the python:alpine docker image - Remove `function` keyword, unsupported in shell * Upgrade various places to the latest Python 3.6 * Test support for translations * Add gettext library, required for translations support * Add locale folder for translations support with README documenting it * Update Changelog * Tweak command to test translations support
47 lines
1.2 KiB
Bash
47 lines
1.2 KiB
Bash
#!/bin/sh
|
|
|
|
set -o errexit
|
|
set -o pipefail
|
|
|
|
# todo: turn on after #1295
|
|
# set -o nounset
|
|
|
|
|
|
cmd="$@"
|
|
|
|
# This entrypoint is used to play nicely with the current cookiecutter configuration.
|
|
# Since docker-compose relies heavily on environment variables itself for configuration, we'd have to define multiple
|
|
# environment variables just to support cookiecutter out of the box. That makes no sense, so this little entrypoint
|
|
# does all this for us.
|
|
export REDIS_URL=redis://redis:6379
|
|
|
|
# the official postgres image uses 'postgres' as default user if not set explictly.
|
|
if [ -z "$POSTGRES_USER" ]; then
|
|
export POSTGRES_USER=postgres
|
|
fi
|
|
|
|
export DATABASE_URL=postgres://$POSTGRES_USER:$POSTGRES_PASSWORD@postgres:5432/$POSTGRES_USER
|
|
{% if cookiecutter.use_celery == 'y' %}
|
|
export CELERY_BROKER_URL=$REDIS_URL/0
|
|
{% endif %}
|
|
|
|
postgres_ready() {
|
|
python << END
|
|
import sys
|
|
import psycopg2
|
|
try:
|
|
conn = psycopg2.connect(dbname="$POSTGRES_USER", user="$POSTGRES_USER", password="$POSTGRES_PASSWORD", host="postgres")
|
|
except psycopg2.OperationalError:
|
|
sys.exit(-1)
|
|
sys.exit(0)
|
|
END
|
|
}
|
|
|
|
until postgres_ready; do
|
|
>&2 echo "Postgres is unavailable - sleeping"
|
|
sleep 1
|
|
done
|
|
|
|
>&2 echo "Postgres is up - continuing..."
|
|
exec $cmd
|