#!/bin/bash # Prepares then runs the server echo ">>> Setting up the db for Django" python manage.py migrate echo ">>> Starting local server" exec python manage.py runserver 0.0.0.0:8000