#!/bin/sh
set -e
composer install --no-dev --optimize-autoloader
php artisan key:generate
php artisan migrate --seed --force
php artisan storage:link || true
php artisan config:cache
php artisan route:cache
php artisan view:cache
