#!/bin/sh

set -o errexit
set -o pipefail
set -o nounset

WSGI=true gunicorn config.wsgi -b 0.0.0.0:8000 --reload
