#!/bin/bash
set -eu

./manage.py migrate
./manage.py collectstatic --clear --noinput
gunicorn --bind 0.0.0.0:8000 shortener.wsgi:application