#!/usr/bin/env bash set -euo pipefail cat docker/settings_local.template.py | envsubst > re2o/settings_local.py cp -n cotisations/templates/cotisations/invoice.html templates/default_invoice.html cp -n cotisations/templates/cotisations/voucher.html templates/default_voucher.html AUTOMIGRATE=${AUTOMIGRATE:-yes} if [ "$AUTOMIGRATE" != "skip" ]; then poetry run python manage.py migrate --noinput fi cat <