#!/usr/bin/env bash set -euo pipefail 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 <<<<<<< HEAD poetry run python manage.py migrate --noinput ======= poetry run python3 manage.py migrate --noinput >>>>>>> a62566ef (premier essai) fi poetry run python manage.py collectstatic poetry run python manage.py compilemessages cat <