deployer/docs/recipe/drupal8.md

88 lines
2.0 KiB
Markdown
Raw Normal View History

2020-10-02 00:11:13 +02:00
<!-- DO NOT EDIT THIS FILE! -->
<!-- Instead edit recipe/drupal8.php -->
<!-- Then run bin/docgen -->
# drupal8
[Source](/recipe/drupal8.php)
* Require
2021-08-31 20:15:06 +02:00
* [common](/docs/recipe/common.md)
* Configuration
* [drupal_site](#drupal_site)
* [shared_dirs](#shared_dirs)
* [shared_files](#shared_files)
* [writable_dirs](#writable_dirs)
2020-10-02 00:11:13 +02:00
* Tasks
2021-08-31 20:15:06 +02:00
* [deploy](#deploy)
2020-10-02 00:11:13 +02:00
2021-08-31 20:15:06 +02:00
## Configuration
2020-10-02 00:11:13 +02:00
### drupal_site
2020-11-16 10:56:42 +01:00
[Source](https://github.com/deployphp/deployer/search?q=%22drupal_site%22+in%3Afile+language%3Aphp+path%3Arecipe+filename%3Adrupal8.php)
2020-10-02 00:11:13 +02:00
Set drupal site. Change if you use different site
2021-08-31 20:15:06 +02:00
```php title="Default value"
'default'
```
2020-10-02 00:11:13 +02:00
### shared_dirs
2020-11-16 10:56:42 +01:00
[Source](https://github.com/deployphp/deployer/search?q=%22shared_dirs%22+in%3Afile+language%3Aphp+path%3Arecipe+filename%3Adrupal8.php)
2020-10-02 00:11:13 +02:00
2021-08-31 20:15:06 +02:00
* Overrides [shared_dirs](/docs/recipe/common.md#shared_dirs) from `recipe/common.php`
2020-10-02 00:11:13 +02:00
Drupal 8 shared dirs
2021-08-31 23:13:11 +02:00
```php title="Default value"
[
'sites/{{drupal_site}}/files',
]
```
2021-08-31 20:15:06 +02:00
2020-10-02 00:11:13 +02:00
### shared_files
2020-11-16 10:56:42 +01:00
[Source](https://github.com/deployphp/deployer/search?q=%22shared_files%22+in%3Afile+language%3Aphp+path%3Arecipe+filename%3Adrupal8.php)
2020-10-02 00:11:13 +02:00
2021-08-31 20:15:06 +02:00
* Overrides [shared_files](/docs/recipe/common.md#shared_files) from `recipe/common.php`
2020-10-02 00:11:13 +02:00
Drupal 8 shared files
2021-08-31 23:13:11 +02:00
```php title="Default value"
[
'sites/{{drupal_site}}/settings.php',
'sites/{{drupal_site}}/services.yml',
]
```
2021-08-31 20:15:06 +02:00
2020-10-02 00:11:13 +02:00
### writable_dirs
2020-11-16 10:56:42 +01:00
[Source](https://github.com/deployphp/deployer/search?q=%22writable_dirs%22+in%3Afile+language%3Aphp+path%3Arecipe+filename%3Adrupal8.php)
2020-10-02 00:11:13 +02:00
2021-08-31 20:15:06 +02:00
* Overrides [writable_dirs](/docs/recipe/deploy/writable.md#writable_dirs) from `recipe/deploy/writable.php`
2020-10-02 00:11:13 +02:00
Drupal 8 Writable dirs
2021-08-31 23:13:11 +02:00
```php title="Default value"
[
'sites/{{drupal_site}}/files',
]
```
2020-10-02 00:11:13 +02:00
2021-08-31 20:15:06 +02:00
2020-10-02 00:11:13 +02:00
## Tasks
### deploy
2020-11-16 10:56:42 +01:00
[Source](https://github.com/deployphp/deployer/search?q=%22deploy%22+in%3Afile+language%3Aphp+path%3Arecipe+filename%3Adrupal8.php)
2020-10-02 00:11:13 +02:00
2021-08-31 20:15:06 +02:00
2020-10-02 00:11:13 +02:00
This task is group task which contains next tasks:
2021-08-31 20:15:06 +02:00
* [deploy:prepare](/docs/recipe/common.md#deployprepare)
* [deploy:publish](/docs/recipe/common.md#deploypublish)
2020-10-02 00:11:13 +02:00