mirror of
https://github.com/deployphp/deployer.git
synced 2025-02-24 01:02:24 +01:00
commit
036c2e4eda
28
recipe/fuelphp.php
Normal file
28
recipe/fuelphp.php
Normal file
@ -0,0 +1,28 @@
|
||||
<?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');
|
Loading…
x
Reference in New Issue
Block a user