7 lines
231 B
Bash
7 lines
231 B
Bash
#!/bin/bash
|
|
cd /root/.openclaw/workspace/city-manual/backend
|
|
python3 manage.py makemigrations
|
|
python3 manage.py migrate
|
|
python3 manage.py createsuperuser --noinput --username admin --email admin@citymanual.com || true
|
|
echo "Done!"
|