deployer/docs/recipe/flow_framework.md

65 lines
1.5 KiB
Markdown
Raw Normal View History

2020-10-02 00:11:13 +02:00
<!-- DO NOT EDIT THIS FILE! -->
<!-- Instead edit recipe/flow_framework.php -->
<!-- Then run bin/docgen -->
# flow_framework
[Source](/recipe/flow_framework.php)
* Require
* [`recipe/common.php`](/docs/recipe/common.md)
* Config
* [`flow_context`](#flow_context)
* [`flow_command`](#flow_command)
* [`shared_dirs`](#shared_dirs)
* Tasks
* [`deploy:run_migrations`](#deployrun_migrations)
* [`deploy:publish_resources`](#deploypublish_resources)
* [`deploy`](#deploy)
## Config
### flow_context
[Source](/recipe/flow_framework.php#L7)
Flow-Framework application-context
### flow_command
[Source](/recipe/flow_framework.php#L10)
Flow-Framework cli-command
### shared_dirs
[Source](/recipe/flow_framework.php#L13)
* Overrides [`shared_dirs`](/docs/recipe/common.md#shared_dirs) from `recipe/common.php`
Flow-Framework shared directories
## Tasks
### deploy:run_migrations
[Source](/recipe/flow_framework.php#L22)
Apply database migrations
### deploy:publish_resources
[Source](/recipe/flow_framework.php#L29)
Publish resources
### deploy
[Source](/recipe/flow_framework.php#L36)
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:run_migrations`](/docs/recipe/flow_framework.md#deployrun_migrations)
* [`deploy:publish_resources`](/docs/recipe/flow_framework.md#deploypublish_resources)
* [`deploy:publish`](/docs/recipe/common.md#deploypublish)
2020-10-02 00:11:13 +02:00