TODOList-Laravel / entrypoint.sh
kenichi9999999's picture
update
28a2800
raw
history blame contribute delete
349 Bytes
#!/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