#!/bin/bash

# exit on error
set -e

# Migrate database
python manage.py migrate

# Start webserver
exec gunicorn -c gunicorn.conf.py registry.wsgi