2015-06-01 16:22:56 +09:00
|
|
|
<?php
|
2016-01-11 14:00:45 +07:00
|
|
|
namespace Deployer;
|
|
|
|
|
2015-06-01 16:22:56 +09:00
|
|
|
require_once __DIR__ . '/common.php';
|
|
|
|
|
2020-10-25 16:00:05 +01:00
|
|
|
add('recipes', ['codeigniter']);
|
|
|
|
|
2015-06-01 16:22:56 +09:00
|
|
|
// CodeIgniter shared dirs
|
|
|
|
set('shared_dirs', ['application/cache', 'application/logs']);
|
|
|
|
|
|
|
|
// CodeIgniter writable dirs
|
|
|
|
set('writable_dirs', ['application/cache', 'application/logs']);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Main task
|
|
|
|
*/
|
2021-11-08 22:59:39 +01:00
|
|
|
desc('Deploys your project');
|
2016-04-04 17:01:55 +07:00
|
|
|
task('deploy', [
|
2020-10-08 01:53:45 +02:00
|
|
|
'deploy:prepare',
|
2015-06-01 16:22:56 +09:00
|
|
|
'deploy:vendors',
|
2020-10-08 01:53:45 +02:00
|
|
|
'deploy:publish',
|
2020-10-29 23:16:36 +01:00
|
|
|
]);
|