deployer/docs/recipe/shopware.md

216 lines
3.8 KiB
Markdown
Raw Normal View History

2021-09-26 15:25:58 +02:00
<!-- DO NOT EDIT THIS FILE! -->
<!-- Instead edit recipe/shopware.php -->
<!-- Then run bin/docgen -->
# shopware
[Source](/recipe/shopware.php)
* Requires
* [common](/docs/recipe/common.md)
## Configuration
### release_name
2021-10-09 18:11:44 +02:00
[Source](https://github.com/deployphp/deployer/blob/master/recipe/shopware.php#L17)
2021-09-26 15:25:58 +02:00
Overrides [release_name](/docs/recipe/deploy/release.md#release_name) from `recipe/deploy/release.php`.
### shared_files
2021-10-09 18:11:44 +02:00
[Source](https://github.com/deployphp/deployer/blob/master/recipe/shopware.php#L21)
2021-09-26 15:25:58 +02:00
Overrides [shared_files](/docs/recipe/common.md#shared_files) from `recipe/common.php`.
```php title="Default value"
[
'.env',
]
```
### shared_dirs
2021-10-09 18:11:44 +02:00
[Source](https://github.com/deployphp/deployer/blob/master/recipe/shopware.php#L24)
2021-09-26 15:25:58 +02:00
Overrides [shared_dirs](/docs/recipe/common.md#shared_dirs) from `recipe/common.php`.
```php title="Default value"
[
'custom/plugins',
'config/jwt',
'files',
'var/log',
'public/media',
'public/thumbnail',
'public/sitemap',
]
```
### writable_dirs
2021-10-09 18:11:44 +02:00
[Source](https://github.com/deployphp/deployer/blob/master/recipe/shopware.php#L33)
2021-09-26 15:25:58 +02:00
Overrides [writable_dirs](/docs/recipe/deploy/writable.md#writable_dirs) from `recipe/deploy/writable.php`.
```php title="Default value"
[
'custom/plugins',
'files',
'var',
'public/media',
'public/thumbnail',
'public/sitemap',
]
```
### static_folders
2021-10-09 18:11:44 +02:00
[Source](https://github.com/deployphp/deployer/blob/master/recipe/shopware.php#L41)
2021-09-26 15:25:58 +02:00
## Tasks
### sw:update_code
2021-10-09 18:11:44 +02:00
[Source](https://github.com/deployphp/deployer/blob/master/recipe/shopware.php#L43)
2021-09-26 15:25:58 +02:00
2021-09-26 15:43:51 +02:00
2021-09-26 15:25:58 +02:00
### sw:system:install
2021-10-09 18:11:44 +02:00
[Source](https://github.com/deployphp/deployer/blob/master/recipe/shopware.php#L46)
2021-09-26 15:25:58 +02:00
2021-09-26 15:43:51 +02:00
2021-09-26 15:25:58 +02:00
### sw:build
2021-10-09 18:11:44 +02:00
[Source](https://github.com/deployphp/deployer/blob/master/recipe/shopware.php#L49)
2021-09-26 15:25:58 +02:00
2021-09-26 15:43:51 +02:00
2021-09-26 15:25:58 +02:00
### sw:system:setup
2021-10-09 18:11:44 +02:00
[Source](https://github.com/deployphp/deployer/blob/master/recipe/shopware.php#L52)
2021-09-26 15:25:58 +02:00
2021-09-26 15:43:51 +02:00
2021-09-26 15:25:58 +02:00
### sw:theme:compile
2021-10-09 18:11:44 +02:00
[Source](https://github.com/deployphp/deployer/blob/master/recipe/shopware.php#L55)
2021-09-26 15:25:58 +02:00
2021-09-26 15:43:51 +02:00
2021-09-26 15:25:58 +02:00
### sw:cache:clear
2021-10-09 18:11:44 +02:00
[Source](https://github.com/deployphp/deployer/blob/master/recipe/shopware.php#L58)
2021-09-26 15:25:58 +02:00
2021-09-26 15:43:51 +02:00
2021-09-26 15:25:58 +02:00
### sw:cache:warmup
2021-10-09 18:11:44 +02:00
[Source](https://github.com/deployphp/deployer/blob/master/recipe/shopware.php#L61)
2021-09-26 15:25:58 +02:00
2021-09-26 15:43:51 +02:00
2021-09-26 15:25:58 +02:00
### sw:database:migrate
2021-10-09 18:11:44 +02:00
[Source](https://github.com/deployphp/deployer/blob/master/recipe/shopware.php#L65)
2021-09-26 15:25:58 +02:00
2021-09-26 15:43:51 +02:00
2021-09-26 15:25:58 +02:00
### sw:plugin:refresh
2021-10-09 18:11:44 +02:00
[Source](https://github.com/deployphp/deployer/blob/master/recipe/shopware.php#L68)
2021-09-26 15:25:58 +02:00
2021-09-26 15:43:51 +02:00
2021-09-26 15:25:58 +02:00
### sw:plugin:activate:all
2021-10-09 18:11:44 +02:00
[Source](https://github.com/deployphp/deployer/blob/master/recipe/shopware.php#L138)
2021-09-26 15:25:58 +02:00
2021-09-26 15:43:51 +02:00
2021-09-26 15:25:58 +02:00
### sw:plugin:migrate:all
2021-10-09 18:11:44 +02:00
[Source](https://github.com/deployphp/deployer/blob/master/recipe/shopware.php#L159)
2021-09-26 15:25:58 +02:00
2021-09-26 15:43:51 +02:00
2021-09-26 15:25:58 +02:00
### sw:plugin:upgrade:all
2021-10-09 18:11:44 +02:00
[Source](https://github.com/deployphp/deployer/blob/master/recipe/shopware.php#L179)
2021-09-26 15:25:58 +02:00
2021-09-26 15:43:51 +02:00
2021-09-26 15:25:58 +02:00
### sw:deploy
2021-10-09 18:11:44 +02:00
[Source](https://github.com/deployphp/deployer/blob/master/recipe/shopware.php#L202)
2021-09-26 15:25:58 +02:00
2021-09-26 15:43:51 +02:00
2021-09-26 15:25:58 +02:00
Grouped SW deploy tasks
This task is group task which contains next tasks:
* [sw:plugin:activate:all](/docs/recipe/shopware.md#swpluginactivateall)
* [sw:database:migrate](/docs/recipe/shopware.md#swdatabasemigrate)
* [sw:plugin:migrate:all](/docs/recipe/shopware.md#swpluginmigrateall)
* [sw:build](/docs/recipe/shopware.md#swbuild)
* [sw:theme:compile](/docs/recipe/shopware.md#swthemecompile)
* [sw:cache:clear](/docs/recipe/shopware.md#swcacheclear)
### deploy
2021-10-09 18:11:44 +02:00
[Source](https://github.com/deployphp/deployer/blob/master/recipe/shopware.php#L215)
2021-09-26 15:25:58 +02:00
Deploy your project.
Main task
This task is group task which contains next tasks:
* [deploy:prepare](/docs/recipe/common.md#deployprepare)
* [sw:deploy](/docs/recipe/shopware.md#swdeploy)
* [deploy:clear_paths](/docs/recipe/deploy/clear_paths.md#deployclear_paths)
* [sw:cache:warmup](/docs/recipe/shopware.md#swcachewarmup)
* [deploy:publish](/docs/recipe/common.md#deploypublish)