Files
chengshishouce/city-manual/backend/migrate.sh

7 lines
231 B
Bash
Raw Normal View History

#!/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!"