entrypoint.sh 235 B

123456789
  1. #!/bin/bash
  2. source venv/bin/activate
  3. python /app/manage.py makemigrations
  4. python /app/manage.py migrate --run-syncdb
  5. chmod +x fixtures/download_fixtures.sh
  6. . fixtures/download_fixtures.sh
  7. python /app/manage.py runserver 0.0.0.0:8000