21 lines
399 B
Bash
21 lines
399 B
Bash
#!/bin/sh
|
|
set -e
|
|
|
|
cd /var/www/html
|
|
|
|
if [ ! -f "vendor/autoload.php" ]; then
|
|
composer install
|
|
fi
|
|
|
|
mkdir -p storage/logs \
|
|
storage/framework/cache \
|
|
storage/framework/sessions \
|
|
storage/framework/views \
|
|
bootstrap/cache
|
|
|
|
touch storage/logs/laravel.log storage/logs/query.log
|
|
chmod 666 storage/logs/laravel.log storage/logs/query.log
|
|
chmod -R 777 storage bootstrap/cache
|
|
|
|
exec "$@"
|