blob: f3733ec404c4d0e0b13224695789e5742304da10 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
#!/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
|