Skip to content

v0.2.1

Compare
Choose a tag to compare
@lorisleiva lorisleiva released this 26 Apr 10:32
  • πŸ“„ 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 enter 7.0 it will reload the php7.0-fpm service. This can than be edited in the config/deploy.php file as the php_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 redondant deploy:public_disk task since artisan:storage:link already takes care of creating a symlink between public/storage and the public disk.