kenken999's picture
sd
185f702
raw
history blame
213 Bytes
#!/bin/bash
# Install dependencies
pip install -r requirements.txt
# Run migrations
python manage.py migrate
# Run the application
python manage.py runserver 0.0.0.0:8000 &
# Run tests in parallel
pytest -n 4