deployphp/deployer

View on GitHub
docs/recipe/deploy/shared.md

Summary

Maintainability
Test Coverage
<!-- DO NOT EDIT THIS FILE! -->
<!-- Instead edit recipe/deploy/shared.php -->
<!-- Then run bin/docgen -->

# Shared Recipe

```php
require 'recipe/deploy/shared.php';
```

[Source](/recipe/deploy/shared.php)


## Configuration
### shared_dirs
[Source](https://github.com/deployphp/deployer/blob/master/recipe/deploy/shared.php#L12)

List of dirs what will be shared between releases.
Each release will have symlink to those dirs stored in [deploy_path](/docs/recipe/common.md#deploy_path)/shared dir.
```php
set('shared_dirs', ['storage']);
```



### shared_files
[Source](https://github.com/deployphp/deployer/blob/master/recipe/deploy/shared.php#L19)

List of files what will be shared between releases.
Each release will have symlink to those files stored in [deploy_path](/docs/recipe/common.md#deploy_path)/shared dir.
```php
set('shared_files', ['.env']);
```




## Tasks

### deploy:shared
[Source](https://github.com/deployphp/deployer/blob/master/recipe/deploy/shared.php#L22)

Creates symlinks for shared files and dirs.