first-start.sh 233 B

123456
  1. if [ ! -f ./.devcontainer/first-start.flag ]; then
  2. echo "Running first-start commands..."
  3. # Add your one-time commands here
  4. php artisan migrate --force && php artisan db:seed
  5. touch ./.devcontainer/first-start.flag
  6. fi