#!/bin/sh case "$*" in dev) export SECRET_KEY="+qYGOYFD(Pc;--S]X%Xnu&j4c+~5As6)yRTY;CHl4bRW;" export DEBUG_MODE=True yes no | python manage.py migrate python manage.py runserver 0.0.0.0:8000 ;; server) # uwsgi start! uwsgi --ini /app/uwsgi.conf ;; shell) /bin/bash ;; *) python manage.py "$@" esac