mirror of
https://github.com/deployphp/deployer.git
synced 2025-02-24 17:22:41 +01:00
Fix wrong change introduced in 62db938884
`.env` file should not be shared because it's release-specific. On the other hand, `.env.local` and `.env.local.php` files are specific to deployment environment and should be shared between releases.
See for details: https://github.com/deployphp/deployer/pull/1907#issuecomment-533779139
Deployer Recipes
recipe
contains officially supported Deployer recipes.
All of them based of common.php
recipe which contains tasks for deployment environment preparation,
loading code, changing files permissions, and much more.
Other recipes can be found in github.com/deployphp/recipes.
To add support for framework or app create new file, require recipe/common.php
, and describe deploy
task.
Take a look of example of composer.php
recipe.