Размер файла: 1.35Kb
<?php
namespace Deployer;
require_once __DIR__ . '/common.php';
add('recipes', ['silverstripe']);
/**
* Silverstripe configuration
*/
set('shared_assets', function () {
if (test('[ -d {{release_or_current_path}}/public ]') || test('[ -d {{deploy_path}}/shared/public ]')) {
return 'public/assets';
}
return 'assets';
});
// Silverstripe shared dirs
set('shared_dirs', [
'{{shared_assets}}'
]);
// Silverstripe writable dirs
set('writable_dirs', [
'{{shared_assets}}'
]);
// Silverstripe cli script
set('silverstripe_cli_script', function () {
$paths = [
'framework/cli-script.php',
'vendor/silverstripe/framework/cli-script.php'
];
foreach ($paths as $path) {
if (test('[ -f {{release_or_current_path}}/'.$path.' ]')) {
return $path;
}
}
});
/**
* Helper tasks
*/
desc('Runs /dev/build');
task('silverstripe:build', function () {
run('{{bin/php}} {{release_or_current_path}}/{{silverstripe_cli_script}} /dev/build');
});
desc('Runs /dev/build?flush=all');
task('silverstripe:buildflush', function () {
run('{{bin/php}} {{release_or_current_path}}/{{silverstripe_cli_script}} /dev/build flush=all');
});
/**
* Main task
*/
desc('Deploys your project');
task('deploy', [
'deploy:prepare',
'deploy:vendors',
'silverstripe:buildflush',
'deploy:publish',
]);