#!/bin/bash
set -eu
set -o pipefail

python /app/manage.py migrate --noinput
python /app/manage.py collectstatic --noinput

exec "$@"
