mirror of
https://github.com/spbleadersofdigtal/backend.git
synced 2024-12-04 00:03:43 +03:00
15 lines
373 B
Bash
15 lines
373 B
Bash
#!/bin/bash
|
|
|
|
set -o errexit
|
|
set -o pipefail
|
|
set -o nounset
|
|
|
|
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}"
|
|
|
|
|
|
exec /venv/bin/python /app/manage.py "$@"
|