#!/bin/sh
export FLASK_APP=gorillaml
if [ "$1" = "development" ] || [ "$1" = "production" ]
then
	export FLASK_ENV="$1"
	shift
fi
flask run "$@"