deployer/docs/recipe/shopware.md

228 lines
4.1 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
### repository
[Source](https://github.com/deployphp/deployer/blob/master/recipe/shopware.php#L10)
Overrides [repository](/docs/recipe/common.md#repository) from `recipe/common.php`.
```php title="Default value"
'git@github.com:shopware/production.git'
```
### release_name
[Source](https://github.com/deployphp/deployer/blob/master/recipe/shopware.php#L12)
Overrides [release_name](/docs/recipe/deploy/release.md#release_name) from `recipe/deploy/release.php`.
### shared_files
[Source](https://github.com/deployphp/deployer/blob/master/recipe/shopware.php#L16)
Overrides [shared_files](/docs/recipe/common.md#shared_files) from `recipe/common.php`.
```php title="Default value"
[
'.env',
]
```
### shared_dirs
[Source](https://github.com/deployphp/deployer/blob/master/recipe/shopware.php#L19)
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
[Source](https://github.com/deployphp/deployer/blob/master/recipe/shopware.php#L28)
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
[Source](https://github.com/deployphp/deployer/blob/master/recipe/shopware.php#L36)
## Tasks
### sw:update_code
[Source](https://github.com/deployphp/deployer/blob/master/recipe/shopware.php#L38)
2021-09-26 15:43:51 +02:00
2021-09-26 15:25:58 +02:00
### sw:system:install
[Source](https://github.com/deployphp/deployer/blob/master/recipe/shopware.php#L41)
2021-09-26 15:43:51 +02:00
2021-09-26 15:25:58 +02:00
### sw:build
[Source](https://github.com/deployphp/deployer/blob/master/recipe/shopware.php#L44)
2021-09-26 15:43:51 +02:00
2021-09-26 15:25:58 +02:00
### sw:system:setup
[Source](https://github.com/deployphp/deployer/blob/master/recipe/shopware.php#L47)
2021-09-26 15:43:51 +02:00
2021-09-26 15:25:58 +02:00
### sw:theme:compile
[Source](https://github.com/deployphp/deployer/blob/master/recipe/shopware.php#L50)
2021-09-26 15:43:51 +02:00
2021-09-26 15:25:58 +02:00
### sw:cache:clear
[Source](https://github.com/deployphp/deployer/blob/master/recipe/shopware.php#L53)
2021-09-26 15:43:51 +02:00
2021-09-26 15:25:58 +02:00
### sw:cache:warmup
[Source](https://github.com/deployphp/deployer/blob/master/recipe/shopware.php#L56)
2021-09-26 15:43:51 +02:00
2021-09-26 15:25:58 +02:00
### sw:database:migrate
[Source](https://github.com/deployphp/deployer/blob/master/recipe/shopware.php#L60)
2021-09-26 15:43:51 +02:00
2021-09-26 15:25:58 +02:00
### sw:plugin:refresh
[Source](https://github.com/deployphp/deployer/blob/master/recipe/shopware.php#L63)
2021-09-26 15:43:51 +02:00
2021-09-26 15:25:58 +02:00
### sw:plugin:activate:all
[Source](https://github.com/deployphp/deployer/blob/master/recipe/shopware.php#L133)
2021-09-26 15:43:51 +02:00
2021-09-26 15:25:58 +02:00
### sw:plugin:migrate:all
[Source](https://github.com/deployphp/deployer/blob/master/recipe/shopware.php#L154)
2021-09-26 15:43:51 +02:00
2021-09-26 15:25:58 +02:00
### sw:plugin:upgrade:all
[Source](https://github.com/deployphp/deployer/blob/master/recipe/shopware.php#L174)
2021-09-26 15:43:51 +02:00
2021-09-26 15:25:58 +02:00
### sw:deploy
[Source](https://github.com/deployphp/deployer/blob/master/recipe/shopware.php#L197)
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
[Source](https://github.com/deployphp/deployer/blob/master/recipe/shopware.php#L210)
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)