Add plugin Mage
This commit is contained in:
parent
62afcee352
commit
232d1d3195
3 changed files with 146 additions and 0 deletions
|
|
@ -43,6 +43,7 @@ Plugins
|
|||
* [Hipchat](plugins/hipchat_notify.md) - `hipchat_notify`
|
||||
* [IRC](plugins/irc.md) - `irc`
|
||||
* [Lint](plugins/lint.md) - `lint`
|
||||
* [Mage](plugins/mage.md) - `mage`
|
||||
* [MySQL](plugins/mysql.md) - `mysql`
|
||||
* [Package Build](plugins/package_build.md) - `package_build`
|
||||
* [PDepend](plugins/pdepend.md) - `pdepend`
|
||||
|
|
|
|||
30
docs/en/plugins/mage.md
Normal file
30
docs/en/plugins/mage.md
Normal file
|
|
@ -0,0 +1,30 @@
|
|||
Plugin Mage
|
||||
===========
|
||||
|
||||
Triggers a deployment of the project to run via [Mage](https://github.com/andres-montanez/Magallanes)
|
||||
|
||||
Configuration
|
||||
-------------
|
||||
|
||||
### Options
|
||||
|
||||
* **env** [required, string] - The environment name
|
||||
|
||||
### Examples
|
||||
|
||||
```yaml
|
||||
deploy:
|
||||
mage:
|
||||
env: production
|
||||
```
|
||||
|
||||
### Options for config.yml
|
||||
|
||||
* **bin** [optional, string] - The mage executable path
|
||||
|
||||
### Examples
|
||||
|
||||
```yaml
|
||||
mage:
|
||||
bin: /usr/local/bin/mage
|
||||
```
|
||||
Loading…
Add table
Add a link
Reference in a new issue