Add plugin Mage

This commit is contained in:
Stepan Strelets 2017-03-16 18:46:28 +03:00 committed by Dmitry Khomutov
commit 232d1d3195
3 changed files with 146 additions and 0 deletions

View file

@ -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
View 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
```