bullish/backend/entrypoint.sh

12 lines
178 B
Bash
Raw Normal View History

#!/bin/sh
# Apply database migrations
echo "Apply database migrations"
python manage.py migrate
# Start server
echo "Starting server"
python manage.py runserver 0.0.0.0:8000