Spaces:
Runtime error
Runtime error
File size: 274 Bytes
af63523 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
#!/bin/bash
echo "Starting..."
pwd
echo "Checking $REQUIREMENTS_FILE..."
if [ -e $REQUIREMENTS_FILE ]; then
echo "Installing from $REQUIREMENTS_FILE"
pip install -r $REQUIREMENTS_FILE
fi
sleep 3
python manage.py migrate
python manage.py runserver 0.0.0.0:8000
|