2020-04-11 15:48:02 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
# Create the storage tree if needed and fix permissions
|
|
|
|
cp -r storage.skel/* storage/
|
|
|
|
chown -R www-data:www-data storage/ bootstrap/
|
|
|
|
|
|
|
|
# Refresh the environment
|
|
|
|
php artisan storage:link
|
2020-07-04 08:09:32 +00:00
|
|
|
php artisan horizon:publish
|
2020-04-11 15:48:02 +00:00
|
|
|
php artisan route:cache
|
|
|
|
php artisan view:cache
|
|
|
|
php artisan config:cache
|
|
|
|
|
|
|
|
# Finally run Apache
|
2020-07-04 08:09:32 +00:00
|
|
|
apache2-foreground
|