mirror of
https://github.com/deployphp/deployer.git
synced 2025-02-24 09:12:51 +01:00
93 lines
1.8 KiB
Markdown
93 lines
1.8 KiB
Markdown
|
<!-- DO NOT EDIT THIS FILE! -->
|
||
|
<!-- Instead edit recipe/prestashop.php -->
|
||
|
<!-- Then run bin/docgen -->
|
||
|
|
||
|
# prestashop
|
||
|
|
||
|
[Source](/recipe/prestashop.php)
|
||
|
|
||
|
|
||
|
|
||
|
* Requires
|
||
|
* [common](/docs/recipe/common.md)
|
||
|
|
||
|
## Configuration
|
||
|
### shared_files
|
||
|
[Source](https://github.com/deployphp/deployer/blob/master/recipe/prestashop.php#L8)
|
||
|
|
||
|
Overrides [shared_files](/docs/recipe/common.md#shared_files) from `recipe/common.php`.
|
||
|
|
||
|
|
||
|
|
||
|
```php title="Default value"
|
||
|
[
|
||
|
'config/settings.inc.php',
|
||
|
'.htaccess',
|
||
|
]
|
||
|
```
|
||
|
|
||
|
|
||
|
### shared_dirs
|
||
|
[Source](https://github.com/deployphp/deployer/blob/master/recipe/prestashop.php#L12)
|
||
|
|
||
|
Overrides [shared_dirs](/docs/recipe/common.md#shared_dirs) from `recipe/common.php`.
|
||
|
|
||
|
|
||
|
|
||
|
```php title="Default value"
|
||
|
[
|
||
|
'img',
|
||
|
'log',
|
||
|
'download',
|
||
|
'upload',
|
||
|
'translations',
|
||
|
'mails',
|
||
|
'themes/default-bootstrap/lang',
|
||
|
'themes/default-bootstrap/mails',
|
||
|
'themes/default-bootstrap/pdf/lang',
|
||
|
]
|
||
|
```
|
||
|
|
||
|
|
||
|
### writable_dirs
|
||
|
[Source](https://github.com/deployphp/deployer/blob/master/recipe/prestashop.php#L23)
|
||
|
|
||
|
Overrides [writable_dirs](/docs/recipe/deploy/writable.md#writable_dirs) from `recipe/deploy/writable.php`.
|
||
|
|
||
|
|
||
|
|
||
|
```php title="Default value"
|
||
|
[
|
||
|
'img',
|
||
|
'log',
|
||
|
'cache',
|
||
|
'download',
|
||
|
'upload',
|
||
|
'translations',
|
||
|
'mails',
|
||
|
'themes/default-bootstrap/lang',
|
||
|
'themes/default-bootstrap/mails',
|
||
|
'themes/default-bootstrap/pdf/lang',
|
||
|
'themes/default-bootstrap/cache',
|
||
|
]
|
||
|
```
|
||
|
|
||
|
|
||
|
|
||
|
## Tasks
|
||
|
|
||
|
### deploy
|
||
|
[Source](https://github.com/deployphp/deployer/blob/master/recipe/prestashop.php#L38)
|
||
|
|
||
|
Deploy your project.
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
This task is group task which contains next tasks:
|
||
|
* [deploy:prepare](/docs/recipe/common.md#deployprepare)
|
||
|
* [deploy:vendors](/docs/recipe/deploy/vendors.md#deployvendors)
|
||
|
* [deploy:publish](/docs/recipe/common.md#deploypublish)
|
||
|
|
||
|
|