v0.2.1
-
π Reload php-fpm in set up. When you run
php artisan deploy:init
and you are not using Laravel Forge, the command will ask you if you want to reload php-fpm after each deployment. (Using Laravel Forge default to reloading php-fpm). The command will then ask you which php version you are using. This information will be used to reload php-fpm using the right service. E.g. if you enter7.0
it will reload thephp7.0-fpm
service. This can than be edited in theconfig/deploy.php
file as thephp_fpm_service
option. -
β¬οΈ Import recipe/laravel.php. Laravel Deployer now has better control over artisan tasks and Laravel specific options.
- The task
artisan:migrate
is now skipped with a warning if the.env
file is inexistant or empty. This situation typically arises on first deployments and blocks the user from being able to edit their production environment after a first deployment. β οΈ Did not import the redondantdeploy:public_disk
task sinceartisan:storage:link
already takes care of creating a symlink betweenpublic/storage
and the public disk.
- The task