mirror of
https://github.com/deployphp/deployer.git
synced 2025-02-22 08:12:29 +01:00
49 lines
999 B
PHP
49 lines
999 B
PHP
<?php
|
|
namespace Deployer;
|
|
|
|
require_once __DIR__ . '/common.php';
|
|
|
|
add('recipes', ['cakephp']);
|
|
|
|
/**
|
|
* CakePHP 4 Project Template configuration
|
|
*/
|
|
|
|
// CakePHP 4 Project Template shared dirs
|
|
set('shared_dirs', [
|
|
'logs',
|
|
'tmp',
|
|
]);
|
|
|
|
// CakePHP 4 Project Template shared files
|
|
set('shared_files', [
|
|
'config/.env',
|
|
'config/app.php',
|
|
]);
|
|
|
|
/**
|
|
* Create plugins' symlinks
|
|
*/
|
|
task('deploy:init', function () {
|
|
run('{{bin/php}} {{release_or_current_path}}/bin/cake.php plugin assets symlink');
|
|
})->desc('Initialization');
|
|
|
|
/**
|
|
* Run migrations
|
|
*/
|
|
task('deploy:run_migrations', function () {
|
|
run('{{bin/php}} {{release_or_current_path}}/bin/cake.php migrations migrate --no-lock');
|
|
run('{{bin/php}} {{release_or_current_path}}/bin/cake.php schema_cache build');
|
|
})->desc('Run migrations');
|
|
|
|
/**
|
|
* Main task
|
|
*/
|
|
task('deploy', [
|
|
'deploy:prepare',
|
|
'deploy:vendors',
|
|
'deploy:init',
|
|
'deploy:run_migrations',
|
|
'deploy:publish',
|
|
])->desc('Deploy your project');
|