Skip to content

Latest commit

 

History

History
11 lines (10 loc) · 186 Bytes

command-deployer-custom.md

File metadata and controls

11 lines (10 loc) · 186 Bytes
<?php 
namespace Deployer;

/**
 * Custom Command Example
 */
task('artisan:reset', function (){
    run("{{bin/php}} {{release_path}}/artisan reset");
})->onStage('production');