Spaces:
Runtime error
Runtime error
File size: 349 Bytes
48a66b6 28a2800 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
#!/bin/sh
echo "🔧 Fixing Laravel permissions..."
chmod -R 777 storage bootstrap/cache vendor database
export COMPOSER_HOME=/tmp/composer
if [ ! -d vendor ]; then
echo "📦 Running composer install..."
composer install --no-interaction --prefer-dist
fi
#echo "🚀 Starting Laravel on :8888"
#php artisan serve --host=0.0.0.0 --port=8888
|