mirror of
https://github.com/RoboSats/robosats.git
synced 2024-12-13 19:06:26 +00:00
15 lines
272 B
Bash
15 lines
272 B
Bash
|
#!/bin/bash
|
||
|
rm db.sqlite3
|
||
|
|
||
|
rm -R api/migrations
|
||
|
rm -R frontend/migrations
|
||
|
rm -R frontend/static/assets/avatars
|
||
|
|
||
|
python3 manage.py makemigrations
|
||
|
python3 manage.py makemigrations api
|
||
|
|
||
|
python3 manage.py migrate
|
||
|
|
||
|
python3 manage.py createsuperuser
|
||
|
|
||
|
python3 manage.py runserver
|