Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 17 additions & 16 deletions docs/recipe/shopware.md
Original file line number Diff line number Diff line change
Expand Up @@ -134,14 +134,15 @@ These directories are shared among all releases.
'files',
'var/log',
'public/media',
'public/theme',
'public/thumbnail',
'public/sitemap',
]
```


### writable_dirs
[Source](https://github.com/deployphp/deployer/blob/master/recipe/shopware.php#L59)
[Source](https://github.com/deployphp/deployer/blob/master/recipe/shopware.php#L60)

Overrides [writable_dirs](/docs/recipe/deploy/writable.md#writable_dirs) from `recipe/deploy/writable.php`.

Expand All @@ -167,7 +168,7 @@ Please note that the files in `config/jwt/*` receive special attention in the `s


### shopware_version
[Source](https://github.com/deployphp/deployer/blob/master/recipe/shopware.php#L75)
[Source](https://github.com/deployphp/deployer/blob/master/recipe/shopware.php#L76)

This sets the shopware version to the version of the shopware console command.

Expand All @@ -182,15 +183,15 @@ return $matches[0] ?? '6.6.0';
## Tasks

### sw\:cache\:clear {#sw-cache-clear}
[Source](https://github.com/deployphp/deployer/blob/master/recipe/shopware.php#L82)
[Source](https://github.com/deployphp/deployer/blob/master/recipe/shopware.php#L83)



This task remotely executes the `cache:clear` console command on the target server.


### sw\:cache\:warmup {#sw-cache-warmup}
[Source](https://github.com/deployphp/deployer/blob/master/recipe/shopware.php#L88)
[Source](https://github.com/deployphp/deployer/blob/master/recipe/shopware.php#L89)



Expand All @@ -199,39 +200,39 @@ visits the website, doesn't have to wait for the cache to be built up.


### sw\:database\:migrate {#sw-database-migrate}
[Source](https://github.com/deployphp/deployer/blob/master/recipe/shopware.php#L98)
[Source](https://github.com/deployphp/deployer/blob/master/recipe/shopware.php#L99)



This task remotely executes the `database:migrate` console command on the target server.


### sw\:plugin\:refresh {#sw-plugin-refresh}
[Source](https://github.com/deployphp/deployer/blob/master/recipe/shopware.php#L102)
[Source](https://github.com/deployphp/deployer/blob/master/recipe/shopware.php#L103)






### sw\:scheduled-task\:register {#sw-scheduled-task-register}
[Source](https://github.com/deployphp/deployer/blob/master/recipe/shopware.php#L106)
[Source](https://github.com/deployphp/deployer/blob/master/recipe/shopware.php#L107)






### sw\:theme\:refresh {#sw-theme-refresh}
[Source](https://github.com/deployphp/deployer/blob/master/recipe/shopware.php#L110)
[Source](https://github.com/deployphp/deployer/blob/master/recipe/shopware.php#L111)






### sw\:theme\:compile {#sw-theme-compile}
[Source](https://github.com/deployphp/deployer/blob/master/recipe/shopware.php#L116)
[Source](https://github.com/deployphp/deployer/blob/master/recipe/shopware.php#L117)



Expand All @@ -240,23 +241,23 @@ to build the theme remotely instead of locally.


### sw\:plugin\:update\:all {#sw-plugin-update-all}
[Source](https://github.com/deployphp/deployer/blob/master/recipe/shopware.php#L128)
[Source](https://github.com/deployphp/deployer/blob/master/recipe/shopware.php#L129)






### sw\:writable\:jwt {#sw-writable-jwt}
[Source](https://github.com/deployphp/deployer/blob/master/recipe/shopware.php#L138)
[Source](https://github.com/deployphp/deployer/blob/master/recipe/shopware.php#L139)






### sw\:deploy {#sw-deploy}
[Source](https://github.com/deployphp/deployer/blob/master/recipe/shopware.php#L145)
[Source](https://github.com/deployphp/deployer/blob/master/recipe/shopware.php#L146)



Expand All @@ -274,7 +275,7 @@ This task is group task which contains next tasks:


### deploy {#deploy}
[Source](https://github.com/deployphp/deployer/blob/master/recipe/shopware.php#L156)
[Source](https://github.com/deployphp/deployer/blob/master/recipe/shopware.php#L157)

Deploys your project.

Expand All @@ -291,23 +292,23 @@ This task is group task which contains next tasks:


### sw-build-without-db\:get-remote-config {#sw-build-without-db-get-remote-config}
[Source](https://github.com/deployphp/deployer/blob/master/recipe/shopware.php#L175)
[Source](https://github.com/deployphp/deployer/blob/master/recipe/shopware.php#L176)






### sw-build-without-db\:build {#sw-build-without-db-build}
[Source](https://github.com/deployphp/deployer/blob/master/recipe/shopware.php#L188)
[Source](https://github.com/deployphp/deployer/blob/master/recipe/shopware.php#L189)






### sw-build-without-db {#sw-build-without-db}
[Source](https://github.com/deployphp/deployer/blob/master/recipe/shopware.php#L192)
[Source](https://github.com/deployphp/deployer/blob/master/recipe/shopware.php#L193)



Expand Down
1 change: 1 addition & 0 deletions recipe/shopware.php
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@
'files',
'var/log',
'public/media',
'public/theme',
'public/thumbnail',
'public/sitemap',
]);
Expand Down