pontoon / docker /server_run.sh
AbdulElahGwaith's picture
Upload folder using huggingface_hub
430c43e verified
Raw
History Blame Contribute Delete
190 Bytes
#!/bin/bash
# Prepares then runs the server
echo ">>> Setting up the db for Django"
python manage.py migrate
echo ">>> Starting local server"
exec python manage.py runserver 0.0.0.0:8000