prestart.sh 202 B

123456789101112
  1. #! /usr/bin/env sh
  2. echo "Running inside /app/prestart.sh, you could add migrations to this file, e.g.:"
  3. echo "
  4. #! /usr/bin/env sh
  5. # Let the DB start
  6. sleep 10;
  7. # Run migrations
  8. alembic upgrade head
  9. "