deployer/recipe/fuelphp.php
2015-05-29 18:39:15 +09:00

29 lines
561 B
PHP

<?php
/* (c) Anton Medvedev <anton@elfet.ru>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
require_once __DIR__ . '/common.php';
// FuelPHP 1.x shared dirs
set('shared_dirs', [
'fuel/app/cache', 'fuel/app/logs',
]);
/**
* Main task
*/
task('deploy', [
'deploy:prepare',
'deploy:release',
'deploy:update_code',
'deploy:vendors',
'deploy:shared',
'deploy:symlink',
'cleanup',
])->desc('Deploy your project');
after('deploy', 'success');