#!/bin/sh set -e ROLE="${ROLE:-app}" case "$ROLE" in app) rm -rf static/* python manage.py collectstatic python manage.py migrate gunicorn musicrate.wsgi -b 0.0.0.0:8000 "$@" ;; *) echo 'unknown role "'"$ROLE"'"' >&2 sleep 1 ;; esac