deployer/docs/recipe/cakephp.md

61 lines
1.3 KiB
Markdown
Raw Normal View History

2020-10-02 00:11:13 +02:00
<!-- DO NOT EDIT THIS FILE! -->
<!-- Instead edit recipe/cakephp.php -->
<!-- Then run bin/docgen -->
# cakephp
[Source](/recipe/cakephp.php)
* Require
* [`recipe/common.php`](/docs/recipe/common.md)
* Config
* [`shared_dirs`](#shared_dirs)
* [`shared_files`](#shared_files)
* Tasks
* [`deploy:init`](#deployinit)
* [`deploy:run_migrations`](#deployrun_migrations)
* [`deploy`](#deploy)
## Config
### shared_dirs
2020-10-25 16:00:05 +01:00
[Source](/recipe/cakephp.php#L13)
2020-10-02 00:11:13 +02:00
* Overrides [`shared_dirs`](/docs/recipe/common.md#shared_dirs) from `recipe/common.php`
2020-10-25 16:00:05 +01:00
CakePHP 4 Project Template shared dirs
2020-10-02 00:11:13 +02:00
### shared_files
2020-10-25 16:00:05 +01:00
[Source](/recipe/cakephp.php#L19)
2020-10-02 00:11:13 +02:00
* Overrides [`shared_files`](/docs/recipe/common.md#shared_files) from `recipe/common.php`
2020-10-25 16:00:05 +01:00
CakePHP 4 Project Template shared files
2020-10-02 00:11:13 +02:00
## Tasks
### deploy:init
2020-10-25 16:00:05 +01:00
[Source](/recipe/cakephp.php#L27)
2020-10-02 00:11:13 +02:00
Create plugins' symlinks
### deploy:run_migrations
2020-10-25 16:00:05 +01:00
[Source](/recipe/cakephp.php#L34)
2020-10-02 00:11:13 +02:00
Run migrations
### deploy
2020-10-25 16:00:05 +01:00
[Source](/recipe/cakephp.php#L43)
2020-10-02 00:11:13 +02:00
Main task
This task is group task which contains next tasks:
* [`deploy:prepare`](/docs/recipe/common.md#deployprepare)
2020-10-02 00:11:13 +02:00
* [`deploy:vendors`](/docs/recipe/deploy/vendors.md#deployvendors)
* [`deploy:init`](/docs/recipe/cakephp.md#deployinit)
* [`deploy:run_migrations`](/docs/recipe/cakephp.md#deployrun_migrations)
* [`deploy:publish`](/docs/recipe/common.md#deploypublish)
2020-10-02 00:11:13 +02:00