dev-master
9999999-devDeployer Recipe for Magento 2
MIT
The Requires
dev-feature/rewrite
dev-feature/rewriteDeployer Recipe for Magento 2
MIT
The Requires
Wallogit.com
2017 © Pedro Peláez
Deployer Recipe for Magento 2
Create a new file deploy.php in the project root (if it does not already exist), (*1)
In this file add the contents below and edit/add the host/s as required, (*2)
<?php
namespace Deployer;
require 'recipe/mage.php';
host('server.hostname')
->port(22)
->stage('dev')
->user('www-data')
->set('branch', 'develop')
->set('keep_releases', 1)
->set('deploy_path', '/some/deploy/path')
Deployer Recipe for Magento 2
MIT
Deployer Recipe for Magento 2
MIT