#!/bin/sh find . -maxdepth 3 -iname "00*py" -exec rm {} + if [ -e db.sqlite3 ]; then rm db.sqlite3 fi python manage.py makemigrations python manage.py migrate python manage.py create_engagement_data # python manage.py createsuperuser