deployer/docs/recipe/codeigniter.md

56 lines
1.2 KiB
Markdown
Raw Normal View History

2021-09-26 15:25:58 +02:00
<!-- DO NOT EDIT THIS FILE! -->
<!-- Instead edit recipe/codeigniter.php -->
<!-- Then run bin/docgen -->
# codeigniter
[Source](/recipe/codeigniter.php)
* Requires
* [common](/docs/recipe/common.md)
## Configuration
### shared_dirs
[Source](https://github.com/deployphp/deployer/blob/master/recipe/codeigniter.php#L9)
2021-10-18 18:29:14 +02:00
Overrides [shared_dirs](/docs/recipe/deploy/shared.md#shared_dirs) from `recipe/deploy/shared.php`.
2021-09-26 15:25:58 +02:00
CodeIgniter shared dirs
```php title="Default value"
['application/cache', 'application/logs']
```
### writable_dirs
[Source](https://github.com/deployphp/deployer/blob/master/recipe/codeigniter.php#L12)
Overrides [writable_dirs](/docs/recipe/deploy/writable.md#writable_dirs) from `recipe/deploy/writable.php`.
CodeIgniter writable dirs
```php title="Default value"
['application/cache', 'application/logs']
```
## Tasks
### deploy
[Source](https://github.com/deployphp/deployer/blob/master/recipe/codeigniter.php#L18)
Deploy your project.
Main task
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)